gpt4 book ai didi

python - Mayavi - 在线框中隐藏 "diagonal"行

转载 作者:行者123 更新时间:2023-12-05 07:30:23 25 4
gpt4 key购买 nike

我刚开始使用 mayavi,想知道是否有一种方法可以绘制表面的线框表示,看起来就像我在 matplotlib 3d 中使用的那样。

最小的例子:

# sphere example
import numpy as np
from mayavi import mlab
from matplotlib import pyplot as plt
from mpl_toolkits.mplot3d import Axes3D

# azimut and polar angle
phi = np.linspace(0,2*np.pi,10)
theta = np.linspace(0,np.pi,10)
phi, theta = np.meshgrid(phi,theta)

# cartesian coordinates
x = np.cos(phi)*np.sin(theta)
y = np.sin(phi)*np.sin(theta)
z = np.cos(theta)

#plotting using matplotlib
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
ax.plot_wireframe(x,y,z)

enter image description here

#plotting using mayavi
mlab.mesh(x,y,z,representation='wireframe', color=(0,0,1))

enter image description here

如您所见,输出不同:matplotlib 打印具有常量 phitheta 的行。然而,Mayavi 还打印连接这些路径的对角线(以黄色突出显示)。

我更喜欢 matplotlib 版本。有没有办法用 mayavi 实现相同的线框?

TIA

最佳答案

使用 mlab.surface() 而不是 mlab.mesh()

关于python - Mayavi - 在线框中隐藏 "diagonal"行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52386422/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com