# Examples from pyvista.Light.is_scene_light
# ==========================================

# Verify that none of the lights of the default light kit are
# scene lights.
import pyvista as pv
pl = pv.Plotter()
lights = pl.renderer.lights
[light.is_scene_light for light in lights]

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

