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

# Download and plot the dataset.
from pyvista import examples
import pyvista as pv
mesh = examples.download_ivan_angel()
cpos = pv.CameraPosition(
    position=(-476.14, -393.73, 282.14),
    focal_point=(-15.00, 11.25, 44.08),
    viewup=(0.26, 0.24, 0.93),
)
mesh.plot(cpos=cpos)

# Return the statistics of the dataset.
mesh

# SEE ALSO:
#     Ivan Angel Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#ivan-angel-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

