# Examples from pyvista.Light.focal_point
# =======================================

# Create a light at (10, 10, 10) shining at (0, 0, 1).
import pyvista as pv
light = pv.Light(position=(10, 10, 10))
light.focal_point = (0, 0, 1)

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

