# Examples from pyvista.examples.downloads.download_tetrahedron
# =============================================================

# Shrink and plot the dataset to show it is composed of several
# tetrahedrons.
from pyvista import examples
dataset = examples.download_tetrahedron()
dataset.shrink(0.85).plot()

# SEE ALSO:
#     Tetrahedron Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#tetrahedron-dataset
#     See this dataset in the Dataset Gallery for more info.

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

