pyvista.Disc#

Disc(center=(0.0, 0.0, 0.0), inner=0.25, outer=0.5, normal=(0.0, 0.0, 1.0), r_res=1, c_res=6)[ソース]#

中心に穴のあるポリゴン円盤を作成します.

ディスクの高さは0です.ユーザは,ディスクの内側と外側の半径,およびポリゴン表現の半径と円周の解像度を指定できます.

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

[x, y, z] の中心.円盤の軸の中央.

innerfloat, default: 0.25

内側の半径.

outerfloat, default: 0.5

外側の半径.

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

円盤の [x, y, z] の方向ベクトル.

r_resint, default: 1

半径方向のポイント数.

c_resint, default: 6

円周方向の点の数.

戻り値:
pyvista.PolyData

ディスクメッシュです.

円周方向に50点の円盤を作ります.

>>> import pyvista as pv
>>> mesh = pv.Disc(c_res=50)
>>> mesh.plot(show_edges=True, line_width=5)
../../../_images/pyvista-Disc-1_00_00.png