0
mayaviのmesh
関数は、サーフェスを三角メッシュとして表示できるようにするrepresentation
キーワードを受け入れます。どのようにして等値面でも同様の結果を得るには、mlab.pipeline.iso_surface
またはmlab.contour3d
を使用しますか?Mayaviのワイヤフレームの等値面
例えば、私は効果に何かを達成したいと思います。もちろん
import numpy as np
from mayavi import mlab
# Create image volume with sphere as zero level surface.
x,y,z = np.mgrid[-20:21, -20:21, -20:21].astype(np.float)
vol = np.sqrt(x**2 + y**2 + z**2) - 7
# Visualize the level surface.
sf = mlab.pipeline.scalar_field(vol)
mlab.pipeline.iso_surface(sf, contours=[0.0],
representation='wireframe')
mlab.show()
、representation
キーワード引数はiso_surface
機能のために存在しないため、このコードが実行されません。