# Working with VRML Files
# =======================

# Import a VRML file directly into a PyVista plotting scene.
# For more details regarding the VRML format, see:
# https://en.wikipedia.org/wiki/VRML
import pyvista as pv
from pyvista import examples

sextant_file = examples.download_sextant(load=False)

# Set up the plotter and import VRML file.
# Use `pyvista.Plotter.import_vrml()` to import file.
pl = pv.Plotter()
pl.import_vrml(sextant_file)
pl.show()

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

