# Examples from pyvista.Plotter.import_vrml
# =========================================

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

# See Working with VRML Files for a full example using this method.

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

