놀랍게도 matplotlib.pyplot (pylab은 사용하지 마십시오)을 입력 센터 (x, y) 및 반경 r로 사용하여 원을 그리는 방법에 대한 간단한 설명을 찾지 못했습니다. 나는 이것의 몇 가지 변형을 시도했다.
import matplotlib.pyplot as plt
circle=plt.Circle((0,0),2)
# here must be something like circle.plot() or not?
plt.show()
...하지만 여전히 작동하지 않았습니다.
plt.Circle(..)
지시합니다 matplotlib.patches.Circle()
. 따라서 pyplot이없는 솔루션은 다음과 같습니다 circle = matplotlib.patches.Circle(..); axes.add_artist(circle)
.