我正在尝试使用包matplotlib.animation
在PyCharm中绘制动画。但是,PyCharm仅以PNG图形显示动画的第一帧。
动画是一个移动的矩形,python版本是2.7.14,代码在这里:
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.patches as patches
from matplotlib import animation
x = [0, 1, 2]
y = [0, 1, 2]
yaw = [0.0, 0.5, 1.3]
fig = plt.figure()
plt.axis('equal')
plt.grid()
ax = fig.add_subplot(111)
ax.set_xlim(-10, 10)
ax.set_ylim(-10, 10)
patch = patches.Rectangle((0, 0), 0, 0, fc='y')
def init():
ax.add_patch(patch)
return patch,
def animate(i):
patch.set_width(1.2)
patch.set_height(1.0)
patch.set_xy([x[i], y[i]])
patch._angle = -np.rad2deg(yaw[i])
return patch,
anim = animation.FuncAnimation(fig, animate,
init_func=init,
frames=len(x),
interval=500,
blit=True)
plt.show()
它在终端上运行良好,所以我认为PyCharm有问题。那我该怎么办?
答案 0 :(得分:1)
不幸的是,PyCharm中的科学观点无法处理动画。您必须在设置|中禁用绘图集成工具| Python Scientific |在工具窗口中显示图表。 PyCharm bug跟踪器中的相应票证:PY-27233。