# Examples from pyvista.Property.edge_color
# =========================================

# Get the default edge color and visualize it. Set the edge's visibility
# to `True` so we can see them.
import pyvista as pv
prop = pv.Property()
prop.edge_color

prop.show_edges = True
prop.plot()

# Visualize red edges.
prop.edge_color = 'red'
prop.plot()

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

