import numpy as np
import matplotlib.pyplot as plt
from matplotlib.animation import FuncAnimation
# 定义爱心曲线的公式
t = np.linspace(0, 2 * np.pi, 1000)
x = 16 * np.sin(t)**3
y = 13 * np.cos(t) - 5 * np.cos(2 * t) - 2 * np.cos(3 * t) - np.cos(4 * t)
# 创建图形和轴
fig, ax = plt.subplots(figsize=(6, 6), dpi=100)
ax.set_xlim([-20, 20])
ax.set_ylim([-20, 20])
ax.set_aspect('equal', adjustable='box')
ax.axis('off') # 隐藏坐标轴
line, = ax.plot([], [], color='red', linewidth=2)
# 初始化函数,清空之前的内容
def init():
line.set_data([], [])
return line,
# 动画更新函数,逐步显示爱心图案
def update(frame):
line.set_data(x[:frame], y[:frame])
return line,
# 创建动画
ani = FuncAnimation(fig, update, frames=len(t), init_func=init, blit=True, interval=10)
# 显示动画
plt.show()
python爱心代码高级
最新推荐文章于 2024-11-12 23:15:59 发布