# Examples from pyvista.plotting.themes.Theme.point_shape
# =======================================================

# Render all points as circles by default globally.
import pyvista as pv
pv.global_theme.point_shape = 'circle'

# Or use the enum.
from pyvista.plotting.opts import PointSpriteShape
pv.global_theme.point_shape = PointSpriteShape.CIRCLE

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

