Name

spotLight()

Examples
size(100, 100, P3D)
background(0)
noStroke()
spotLight(51, 102, 126, 80, 20, 40, -1, 0, 0, PI/2, 2)
translate(20, 50, 0)
sphere(30)
size(100, 100, P3D)
concentration = 600  # Try 1 -> 10000
background(0)
noStroke()
spotLight(51, 102, 126, 50, 50, 400,
          0, 0, -1, PI / 16, concentration)
translate(80, 50, 0)
sphere(30)
Description Adds a spot light. Lights need to be included in the draw() to remain persistent in a looping program. Placing them in the setup() of a looping program will cause them to only have an effect the first time through the loop. The v1, v2, and v3 parameters are interpreted as either RGB or HSB values, depending on the current color mode. The x, y, and z parameters specify the position of the light and nx, ny, nz specify the direction of light. The angle parameter affects angle of the spotlight cone, while concentration sets the bias of light focusing toward the center of that cone.
Syntax
spotLight(v1, v2, v3, x, y, z, nx, ny, nz, angle, concentration)
Parameters
v1float: red or hue value (depending on current color mode)
v2float: green or saturation value (depending on current color mode)
v3float: blue or brightness value (depending on current color mode)
xfloat: x-coordinate of the light
yfloat: y-coordinate of the light
zfloat: z-coordinate of the light
nxfloat: direction along the x axis
nyfloat: direction along the y axis
Related lights()
directionalLight()
pointLight()
ambientLight()

Updated on Tue Feb 27 14:07:12 2024.

If you see any errors or have comments, please let us know.