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

from pyvista import examples
import pyvista as pv
cpos = pv.CameraPosition(
    position=(8.4287e02, -5.7418e02, -4.4085e02),
    focal_point=(2.4950e02, 2.3450e02, 1.0125e02),
    viewup=(-3.2000e-01, 3.5000e-01, -8.8000e-01),
)
dataset = examples.download_frog()
dataset.plot(volume=True, cpos=cpos)

# SEE ALSO:
#     Frog Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#frog-dataset
#     See this dataset in the Dataset Gallery for more info.
#     Frog Tissues Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#frog-tissues-dataset
#     Segmentation labels associated with this dataset.
#     Medical Datasets https://docs.pyvista.org/api/examples/dataset_gallery.html#medical-dataset-gallery
#     Browse other medical datasets.
#     Volume Rendering https://docs.pyvista.org/examples/02-plot/volume_rendering.html#volume-rendering-example
#     Example using this dataset.

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

