split_sharp_edges#
- property MapdlTheme.split_sharp_edges: bool#
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