# Examples from pyvista.Plotter.export_obj
# ========================================

# Export the scene to "scene.obj"
import pyvista as pv
pl = pv.Plotter()
_ = pl.add_mesh(pv.Sphere())
pl.export_obj('scene.obj')

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

