# Examples from pyvista.Plotter.theme
# ===================================

# Use the dark theme for a plotter.
import pyvista as pv
from pyvista import themes
pl = pv.Plotter(theme=themes.DarkTheme())
actor = pl.add_mesh(pv.Sphere())
pl.show()

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

