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#
Download Python source code | Download Jupyter notebook
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