pyvista.Light.set_camera_light#

Light.set_camera_light()[source]#

Set the light to be a camera light.

A camera light moves with the camera, but it can have an arbitrary relative position to the camera. Camera lights are defined in a coordinate space where the camera is located at (0, 0, 1), looking towards (0, 0, 0) at a distance of 1, with up being (0, 1, 0). Camera lights use the transformation matrix to establish this space. Calling this method will reset the light’s transformation matrix.

Examples

>>> import pyvista as pv
>>> light = pv.Light()
>>> light.set_camera_light()
>>> light.light_type
<LightType.CAMERA_LIGHT: 2>