欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python画圆

程序员文章站 2022-05-21 09:22:19
...
# -*- coding: utf-8 -*-
"""
__author__= 'Du'
__creation_time__= '2018/1/4 17:30'
"""


import numpy as np
import matplotlib.pyplot as plt


# 该行用于设置chart 的样式,可以注掉
# plt.style.use("mystyle")

fig = plt.figure(figsize=(8,8))
ax = fig.add_subplot(111)
ax.spines['left'].set_color('none')
ax.spines['bottom'].set_color('none')
ax.spines['right'].set_color('none')
ax.spines['top'].set_color('none')
ax.set_xticks([])
ax.set_yticks([])

# 实现功能
theta = np.arange(0, 2 * np.pi + 0.1,2 * np.pi / 1000)
x = np.cos(theta)
y = np.sin(theta)

v = np.linspace(0, 10, 100)
v.shape = (100, 1)

x = v * x
y = v * y

plt.plot(x, y, color='pink')
# plt.savefig('ball1.jpg')
plt.show()
Python画圆

上一篇: matplotlib画圆

下一篇: JS画圆