我正在尝试为一组圆圈设置动画,以便它们随着时间的推移而改变颜色。下面的代码生成了一个单帧的例子:
import numpy as np
from matplotlib import pyplot as plt
from matplotlib import animation
nx = 20
ny = 20
fig = plt.figure()
plt.axis([0,nx,0,ny])
ax = plt.gca()
ax.set_aspect(1)
for x in range(0,nx):
for y in range(0,ny):
ax.add_patch( plt.Circle((x+0.5,y+0.5),0.45,color='r') )
plt.show()
如何定义函数 init() 和 animate() 以便我可以使用例如:
animation.FuncAnimation(fig, animate, initfunc=init,interval=200, blit=True)