# Examples from pyvista.Actor.pickable
# ====================================

# Create an actor using the `pyvista.Plotter` and then make the
# actor unpickable.
import pyvista as pv
pl = pv.Plotter()
actor = pl.add_mesh(pv.Sphere())
actor.pickable = False
actor.pickable

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

