# Examples from pyvista.Property.lighting
# =======================================

# Get the default lighting and visualize it
import pyvista as pv
prop = pv.Property()
prop.lighting
prop.plot()

# Visualize disabled lighting.
prop.lighting = False
prop.plot()

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

