# Show Edges
# ==========

# Show the edges of all geometries within a mesh using the
# `show_edges` property.
# Sometimes it can be useful to show all of the edges of a mesh when rendering
# to communicate aspects of the dataset like resolution.
# Showing the edges for any rendered dataset is as simple as specifying the
# the `show_edges` keyword argument to `True` when plotting a dataset.
from pyvista import examples

bust = examples.download_washington_bust()

bust.plot(show_edges=True, color=True)

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

