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

# Enable the splitting of sharp edges globally.
import pyvista as pv
pv.global_theme.split_sharp_edges = True
pv.global_theme.split_sharp_edges

# Disable the splitting of sharp edges globally.
import pyvista as pv
pv.global_theme.split_sharp_edges = False
pv.global_theme.split_sharp_edges

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

