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
style.
Examples#
Download Python source code | Download Jupyter notebook
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()