Python は、matplotlb ライブラリの Figure() 関数と Circle() 関数を使用して円を描画します。このうち、figure() 関数はキャンバス サイズを決定するために使用され、Circle() 関数はキャンバス サイズを決定するために使用されます。円の関連情報を設定し、円を描きます。
このチュートリアルの動作環境: Windows 7 システム、Python 3 バージョン、Dell G3 コンピューター。
Python サークル描画コード
from matplotlib.patches import Ellipse, Circle import matplotlib.pyplot as plt def plot_cicle(): fig = plt.figure() ax = fig.add_subplot(111) cir1 = Circle(xy = (0.0, 0.0), radius=2, alpha=0.5) ax.add_patch(cir1) x, y = 0, 0 ax.plot(x, y, 'ro') plt.axis('scaled') plt.axis('equal') #changes limits of x or y axis so that equal increments of x and y have the same length plt.show() plot_cicle()
以上がPythonで円を描くにはどのような関数を使用しますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。