失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > python 3d绘图 拖动_在python中以交互方式旋转3D绘图 - matplotlib

python 3d绘图 拖动_在python中以交互方式旋转3D绘图 - matplotlib

时间:2021-05-26 09:48:11

相关推荐

python 3d绘图 拖动_在python中以交互方式旋转3D绘图 -  matplotlib

我想知道如何以this视频中描述的方式交互式旋转3D绘图(如果您从上方或下方或从右侧或左侧决定)。我可以在spyder或jupyter Notebook中生成3D绘图,但之后它仍然是静态的,我无法与它交互并旋转/改变视点的角度。

以下是代码:

from mpl_toolkits.mplot3d import Axes3D

import matplotlib.pyplot as plt

from matplotlib import cm

from matplotlib.ticker import LinearLocator, FormatStrFormatter

import numpy as np

fig = plt.figure()

ax = fig.gca(projection='3d')

scale = 8

# Make data.

X = np.arange(-scale, scale, 0.25)

Y = np.arange(-scale, scale, 0.25)

X, Y = np.meshgrid(X, Y)

Z = X**2 + Y**2

# Plot the surface.

surf = ax.plot_surface(X, Y, Z, cmap=cm.coolwarm,

linewidth=0, antialiased=False)

# Customize the z axis.

ax.set_zlim(0, 100)

ax.zaxis.set_major_locator(LinearLocator(10))

ax.zaxis.set_major_formatter(FormatStrFormatter('%.02f'))

# rotate the axes and update

for angle in range(0, 360):

ax.view_init(30, 40)

# Add a color bar which maps values to colors.

fig.colorbar(surf, shrink=0.5, aspect=5)

plt.show()

非常感谢你!

如果觉得《python 3d绘图 拖动_在python中以交互方式旋转3D绘图 - matplotlib》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。