def animate(self):
"""animate function for actually generating figure from Animation instance.
"""
ani = animation.ArtistAnimation(self.fig, self.frames, interval=self.interval, blit=self.blit, repeat_delay=self.repeat_delay)
plt.axis('off')
plt.show()
评论列表
文章目录