# 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.18, -402.21, 230.71),
    focal_point=(6.06, -1.74, 101.48),
    viewup=(0.108, 0.226, 0.968),
)
mesh.plot(cpos=cpos)

# Return the statistics of the dataset.
mesh

# SEE ALSO:
#     Owl Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#owl-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

