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

import pyvista as pv
from pyvista import examples
dataset = examples.download_head_2()
pl = pv.Plotter()
_ = pl.add_volume(dataset, cmap='cool', opacity='sigmoid_6')
pl.show()

# SEE ALSO:
#     Head 2 Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#head-2-dataset
#     See this dataset in the Dataset Gallery for more info.
#     Head Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#head-dataset
#     Medical Datasets https://docs.pyvista.org/api/examples/dataset_gallery.html#medical-dataset-gallery
#     Browse other medical datasets.

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

