pyvista.plotting.themes.Theme.split_sharp_edges#

property Theme.split_sharp_edges: bool[source]#

Set or return splitting sharp edges.

See Types of Shading for an example showing split sharp edges.

Examples

Enable the splitting of sharp edges globally.

>>> import pyvista as pv
>>> pv.global_theme.split_sharp_edges = True
>>> pv.global_theme.split_sharp_edges
True

Disable the splitting of sharp edges globally.

>>> import pyvista as pv
>>> pv.global_theme.split_sharp_edges = False
>>> pv.global_theme.split_sharp_edges
False