pyvista.Property.render_points_as_spheres#
- property Property.render_points_as_spheres: bool[ソース]#
レンダリングポイントを球体として返すか設定します.
デフォルトは
pyvista.plotting.themes.Theme.render_points_as_spheres
になっています.表現スタイルが
'points'
に設定されていることが必要です.例
レンダリングポイントを球体として有効にします.
>>> import pyvista as pv >>> prop = pv.Property() >>> prop.style = 'points' >>> prop.point_size = 20 >>> prop.render_points_as_spheres = True >>> prop.render_points_as_spheres True
デフォルトのポイントレンダリングを可視化します.
>>> prop.render_points_as_spheres = False >>> prop.plot()
レンダリングポイントを球体として可視化します.
>>> prop.render_points_as_spheres = True >>> prop.plot()