# Examples from pyvista.Plotter.disable_hidden_line_removal
# =========================================================

# Enable and then disable hidden line removal.
import pyvista as pv
pl = pv.Plotter()
pl.enable_hidden_line_removal()
pl.disable_hidden_line_removal()

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

