# Examples from pyvista.Plotter.add_cursor
# ========================================

import pyvista as pv
sphere = pv.Sphere()
pl = pv.Plotter()
_ = pl.add_mesh(sphere)
_ = pl.add_cursor()
pl.show()

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

