注釈
Go to the end to download the full example code
押し出しトリム#
func:extrude_trim() <pyvista.PolyDataFilters.extrude_trim> を使用して, pyvista.PolyData
を pyvista.Plane()
で押しつぶします.
import pyvista as pv
押し出し面を生成します#
# Create surface and plane
mesh = pv.ParametricRandomHills(random_seed=2)
plane = pv.Plane(
center=(mesh.center[0], mesh.center[1], -5),
direction=(0, 0, -1),
i_size=30,
j_size=30,
)
# Perform the extrude trim
extruded_hills = mesh.extrude_trim((0, 0, -1.0), plane)
extruded_hills
押し出し面をプロットします#
出来上がった pyvista.PolyData
をプロットします.
pl = pv.Plotter(shape=(1, 2))
pl.add_mesh(mesh)
pl.add_text('Original Mesh')
pl.subplot(0, 1)
pl.add_mesh(plane, style='wireframe', color='black')
pl.add_mesh(extruded_hills)
pl.add_text('Extruded Mesh')
pl.link_views()
pl.camera_position = 'iso'
pl.camera.zoom(1.5)
pl.show()
すべてのエッジを押し出します#
前の例では,デフォルトの extrusion='boundary_edges'
を使用し,境界上の面のみを生成していました. extrusion='all_edges'
を使用すると,内側の辺も生成されます.
# Create a triangle.
disc = pv.Disc(c_res=3, r_res=4, inner=0)
plane = pv.Plane(
center=(disc.center[0], disc.center[1], -1),
direction=(0, 0, -1),
i_size=1,
j_size=1,
)
# extrude with and without the all_edges option
extruded_disc = disc.extrude_trim((0, 0, -1.0), plane)
extruded_disc_all = disc.extrude_trim((0, 0, -1.0), plane, extrusion='all_edges')
print(f'Extrusion has {extruded_disc.n_faces_strict} faces with default boundary_edges')
print(f'Extrusion has {extruded_disc_all.n_faces_strict} faces with all_edges')
Extrusion has 30 faces with default boundary_edges
Extrusion has 72 faces with all_edges
プロット#
style='wireframe'
でプロットすることにより,追加の内側面を表示します.
pl = pv.Plotter(shape=(1, 2))
pl.add_mesh(extruded_disc, style='wireframe', line_width=5)
pl.add_text('Extrude with boundary_edges')
pl.subplot(0, 1)
pl.add_mesh(extruded_disc_all, style='wireframe', line_width=5)
pl.add_text('Extrude with all_edges')
pl.link_views()
pl.camera_position = 'iso'
pl.camera.zoom(1.3)
pl.show()
線の押し出し#
また,線を押し出すこともできます.押し出された線の出力は pyvista.PolyData
のままであることを確認してください.
plane = pv.Plane(center=(0, 0, 1), i_size=2, j_size=0.2, direction=[1, 1, 1], j_resolution=1)
line = pv.Line()
extruded_line = line.extrude_trim((0, 0, 1), plane)
extruded_line
押し出し線をプロットします#
スカラーが押し出された線にコピーされていることに注意してください.
pl = pv.Plotter()
pl.add_mesh(line, style='wireframe', line_width=20, show_scalar_bar=False, color='r')
pl.add_mesh(plane, style='wireframe', color='black', show_scalar_bar=False)
pl.add_mesh(extruded_line, show_scalar_bar=False, lighting=False)
pl.show()
Total running time of the script: (0 minutes 1.225 seconds)