概述
本教程操作环境:windows7系统、Python3版、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画圆运用了什么函数的详细内容,更多请关注靠谱客其它相关文章!
最后
以上就是孝顺时光为你收集整理的python画圆运用了什么函数的全部内容,希望文章能够帮你解决python画圆运用了什么函数所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复