# Examples from pyvista.Light.is_camera_light
# ===========================================

# Verify that four out of five lights of the default light kit
# are camera lights.
import pyvista as pv
pl = pv.Plotter()
lights = pl.renderer.lights
[light.is_camera_light for light in lights]

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

