# Examples from pyvista.Light.positional
# ======================================

# Create a spotlight shining on the origin.
import pyvista as pv
light = pv.Light(position=(1, 1, 1))
light.positional = True
light.cone_angle = 30

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

