旋转3D绘图

一个非常简单的旋转3D绘图动画。

有关动画3D绘图的另一个简单示例,请参阅wire3d_animation_demo。

(构建文档库时会跳过此示例,因为它有意运行需要很长时间)

  1. from mpl_toolkits.mplot3d import axes3d
  2. import matplotlib.pyplot as plt
  3. fig = plt.figure()
  4. ax = fig.add_subplot(111, projection='3d')
  5. # load some test data for demonstration and plot a wireframe
  6. X, Y, Z = axes3d.get_test_data(0.1)
  7. ax.plot_wireframe(X, Y, Z, rstride=5, cstride=5)
  8. # rotate the axes and update
  9. for angle in range(0, 360):
  10. ax.view_init(30, angle)
  11. plt.draw()
  12. plt.pause(.001)

下载这个示例