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

# Download and plot the dataset.
from pyvista import examples
import pyvista as pv
mesh = examples.download_owl()
cpos = pv.CameraPosition(
    position=(-315.2, -402.2, 230.7),
    focal_point=(6.06, -1.74, 101.5),
    viewup=(0.108, 0.226, 0.968),
)
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
