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

import pyvista as pv
from pyvista import examples
vrml_file = examples.download_teapot_vrml(load=False)
pl = pv.Plotter()
pl.import_vrml(vrml_file)
pl.show()

# SEE ALSO:
#     Teapot Vrml Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#teapot-vrml-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

