旋转三维绘图

旋转三维绘图的非常简单的动画。

另一个简单的三维绘图动画示例,请参见Wire3d动画演示。

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

from mpl_toolkits.mplot3d import axes3d
import matplotlib.pyplot as plt

fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')

# load some test data for demonstration and plot a wireframe
X, Y, Z = axes3d.get_test_data(0.1)
ax.plot_wireframe(X, Y, Z, rstride=5, cstride=5)

# rotate the axes and update
for angle in range(0, 360):
    ax.view_init(30, angle)
    plt.draw()
    plt.pause(.001)

关键词:matplotlib代码示例,codex,python plot,pyplot Gallery generated by Sphinx-Gallery