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

from pyvista import examples
import pyvista as pv
dataset = examples.download_knee_full()
cpos = pv.CameraPosition(
    position=(-381.74, -46.02, 216.54),
    focal_point=(74.8305, 89.2905, 100.0),
    viewup=(0.23, 0.072, 0.97),
)
dataset.plot(volume=True, cmap='bone', cpos=cpos, show_scalar_bar=False)

# SEE ALSO:
#     Knee Full Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#knee-full-dataset
#     See this dataset in the Dataset Gallery for more info.
#     Knee Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#knee-dataset
#     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:
#     Volume Rendering https://docs.pyvista.org/examples/02-plot/volume_rendering.html#volume-rendering-example
#     Slider Bar Widget https://docs.pyvista.org/examples/03-widgets/slider_bar_widget.html#slider-bar-widget-example

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

