pyvista.Property.show_edges#
- property Property.show_edges: bool[source]#
Return or set the visibility of edges.
Shows or hides the edges. Does not apply to a wireframe representation.
Examples
>>> import pyvista as pv >>> prop = pv.Property() >>> prop.show_edges = True >>> prop.show_edges True
Visualize default edge visibility of
False
.>>> prop.show_edges = False >>> prop.plot()
Visualize edge visibility of
True
.>>> prop.show_edges = True >>> prop.plot()