pyvista.Property.show_edges#
- property Property.show_edges: bool[ソース]#
エッジの表示を取得または設定します.
Shows or hides the edges. Does not apply to a wireframe
style
.例
Get the default edge visibility and visualize it.
>>> import pyvista as pv >>> prop = pv.Property() >>> prop.show_edges False >>> prop.plot()
Visualize setting the visibility to
True
.>>> prop.show_edges = True >>> prop.plot()