# Examples from pyvista.Actor.plot
# ================================

# Create an actor without the `pyvista.Plotter`, change its
# properties, and plot it.
import pyvista as pv
mesh = pv.Sphere()
mapper = pv.DataSetMapper(mesh)
actor = pv.Actor(mapper=mapper)
actor.prop.color = 'red'
actor.prop.show_edges = True
actor.plot()

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

