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 중국어 웹사이트의 기타 관련 기사를 참조하세요!