0
我一直在尝试对表面进行动画处理。到目前为止,所有的动画作品,以及曲面都很好地绘制。然而,我的表面上有一些直线,看起来像是来自轴线。有没有办法摆脱这个?Python:绘制在动画中的plot_surface()上的网格线
# Plot first figure
fig = plt.figure()
ax = fig.gca(projection='3d')
surf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.coolwarm,
vmin = 900, vmax = 1430, linewidth=0, antialiased=False)
fig.colorbar(surf, shrink=0.5, aspect=5)
def data(i, X,Y,Z, surf):
#change soln variable for the next frame
ax.clear()
(a,b) = val[i].shape
X = np.arange(0, b)
Y = np.arange(0, a)
X,Y = np.meshgrid(X, Y)
Z = val[i]
surf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.coolwarm,
vmin = 900, vmax = 1430, linewidth=0, antialiased=False)
ax.set_xlim(0, 60)
ax.set_ylim(0, 280)
ax.set_zlim(900, 1430)
ax.view_init(azim=10, elev=20)
ax.zaxis.set_major_locator(LinearLocator(10))
ax.zaxis.set_major_formatter(FormatStrFormatter('%.02f'))
return surf
# Add animation
ani = animation.FuncAnimation(fig, data, fargs=(X, Y, Z, surf),
frames=val.size, interval=0.05 , blit=False, repeat=False)
# Full screen window
figManager = plt.get_current_fig_manager()
figManager.window.showMaximized()
plt.show()
谢谢更换
ax.clear()
!它完美的工作! :d –