pyvista.Property.style#

property Property.style: str[ソース]#

メッシュの可視化スタイルを返すか設定します.

以下のいずれか(大文字と小文字を区別しません).

  • 'surface'

  • 'wireframe'

  • 'points'

表現スタイルを 'Wireframe' に設定します.

>>> import pyvista as pv
>>> prop = pv.Property()
>>> prop.style = 'wireframe'
>>> prop.style
'Wireframe'

デフォルトのサーフェス表現スタイルを可視化します.

>>> prop.style = 'surface'
>>> prop.plot()
../../../_images/pyvista-Property-style-1_00_00.png

ワイヤーフレーム表現スタイルを可視化します.

>>> prop.style = 'wireframe'
>>> prop.plot()
../../../_images/pyvista-Property-style-1_01_00.png

ポイント表現スタイルを可視化します.

>>> prop.style = 'points'
>>> prop.point_size = 5.0
>>> prop.plot()
../../../_images/pyvista-Property-style-1_02_00.png