# Examples from pyvista.Light.is_headlight
# ========================================

# Verify that the first light of the default light kit is a headlight.
import pyvista as pv
pl = pv.Plotter()
lights = pl.renderer.lights
[light.is_headlight for light in lights]

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

