# 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.1, -393.7, 282.1),
    focal_point=(-15.0, 11.25, 44.08),
    viewup=(0.26, 0.24, 0.93),
)
mesh.plot(cpos=cpos)

# Return the statistics of the dataset.
mesh

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