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

import pyvista as pv
from pyvista import examples
gltf_file = examples.download_gearbox(load=False)
pl = pv.Plotter()
pl.import_gltf(gltf_file)
pl.show()

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

