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 style.

Examples

Get the default edge visibility and visualize it.

>>> import pyvista as pv
>>> prop = pv.Property()
>>> prop.show_edges
False
>>> prop.plot()
../../../_images/pyvista-Property-show_edges-1_00_00.png

Visualize setting the visibility to True.

>>> prop.show_edges = True
>>> prop.plot()
../../../_images/pyvista-Property-show_edges-1_01_00.png