# Examples from pyvista.Plotter.add_mesh_clip_box
# ===============================================

# Shows an interactive clip box.
import pyvista as pv
mesh = pv.ParametricConicSpiral()
pl = pv.Plotter()
_ = pl.add_mesh_clip_box(mesh, color='white')
pl.show()

# For a full example see Box Widget.

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

