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()
../../../_images/pyvista-Property-show_edges-1_00_00.png

Visualize edge visibility of True.

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