pyvista.Plotter.disable_hidden_line_removal#

Plotter.disable_hidden_line_removal(all_renderers=True)[source]#

Disable hidden line removal.

Enable again with enable_hidden_line_removal.

Parameters:
all_renderersbool, default: True

If True, applies to all renderers in subplots. If False, then only applies to the active renderer.

Examples

Enable and then disable hidden line removal.

>>> import pyvista as pv
>>> pl = pv.Plotter()
>>> pl.enable_hidden_line_removal()
>>> pl.disable_hidden_line_removal()
../../../_images/pyvista-Plotter-disable_hidden_line_removal-1_00_00.png