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

from pyvista import examples
import pyvista as pv
cpos = pv.CameraPosition(
    position=(220.96, -24.38, -69.96),
    focal_point=(135.86, 106.55, 17.72),
    viewup=(-0.25, 0.42, -0.87),
)
dataset = examples.download_carotid()
dataset.plot(volume=True, cpos=cpos)

# SEE ALSO:
#     Carotid Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#carotid-dataset
#     See this dataset in the Dataset Gallery for more info.
#     Medical Datasets https://docs.pyvista.org/api/examples/dataset_gallery.html#medical-dataset-gallery
#     Browse other medical datasets.
#     This dataset is used in the following examples:
#     Plotting Glyphs (Vectors or PolyData) https://docs.pyvista.org/examples/01-filter/glyph.html#glyph-example
#     Compute Gradients of a Field https://docs.pyvista.org/examples/01-filter/gradients.html#gradients-example
#     Streamlines https://docs.pyvista.org/examples/01-filter/streamlines.html#streamlines-example
#     Plane Widget https://docs.pyvista.org/examples/03-widgets/plane_widget.html#plane-widget-example
#     Compare threshold filters https://docs.pyvista.org/examples/01-filter/compare_threshold_filters.html#compare-threshold-filters-example

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

