pyvista.Cylinder#

Cylinder(center=(0.0, 0.0, 0.0), direction=(1.0, 0.0, 0.0), radius=0.5, height=1.0, resolution=100, capping=True)[ソース]#

円柱の表面を作成します.

警告

pyvista.Cylinder() 関数は pyvista.CylinderSourcepyvista.PolyData を独自の方法で回転させます. pyvista.CylinderSource.output をz軸方向に90度回転させ,メッシュを新しい centerdirection に平行移動させ,向きを調整します.

pyvista.CylinderStructured() も参照してください.

パラメータ:
centersequence[float], default: (0.0, 0.0, 0.0)

[x, y, z] 中のセントロイドの位置

directionsequence[float], default: (1.0, 0.0, 0.0)

[x, y, z] 内の方向シリンダポイント

radiusfloat, default: 0.5

円柱の半径.

heightfloat, default: 1.0

円柱の高さ.

resolutionint, default: 100

円柱の円形面上の点の数です.

cappingbool, default: True

キャップ円柱の終点はポリゴンです.

戻り値:
pyvista.PolyData

円柱表面.

>>> import pyvista as pv
>>> cylinder = pv.Cylinder(
...     center=[1, 2, 3], direction=[1, 1, 1], radius=1, height=2
... )
>>> cylinder.plot(show_edges=True, line_width=5, cpos='xy')
../../../_images/pyvista-Cylinder-1_00_00.png
>>> pl = pv.Plotter()
>>> _ = pl.add_mesh(
...     pv.Cylinder(
...         center=[1, 2, 3], direction=[1, 1, 1], radius=1, height=2
...     ),
...     show_edges=True,
...     line_width=5,
... )
>>> pl.camera_position = "xy"
>>> pl.show()
../../../_images/pyvista-Cylinder-1_01_00.png

上記の例は動作が似ています.