# Examples from pyvista.Light.on
# ==============================

# Create a light, check if it's on by default, and turn it off.
import pyvista as pv
light = pv.Light()
light.on
light.on = False

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

