# Examples from pyvista.Property.show_edges
# =========================================

# Get the default edge visibility and visualize it.
import pyvista as pv
prop = pv.Property()
prop.show_edges
prop.plot()

# Visualize setting the visibility to `True`.
prop.show_edges = True
prop.plot()

# ----------------------------------------------------------------------
# Generated by sphinx-examples-as-code https://github.com/pyvista/sphinx-examples-as-code

