-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCube_light_mixture.pde
More file actions
34 lines (28 loc) · 844 Bytes
/
Cube_light_mixture.pde
File metadata and controls
34 lines (28 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
* Mixture based on Simon Greenwold Processing example
* Display a box with three different kinds of lights.
*/
void setup() {
size(640, 360, P3D);
noStroke();
}
void draw() {
background(0);
translate(width / 2, height / 4);
// Orange point light on the right
pointLight(150, 100, 0, // Color
200, -150, 0); // Position
// Blue directional light from the left
directionalLight(0, 102, 255, // Color
1, 0, 0); // The x-, y-, z-axis direction
// Yellow spotlight from the front
spotLight(255, 255, 109, // Color
0, 40, 200, // Position
0, -0.5, -0.5, // Direction
PI / 2, 2); // Angle, concentration
rotateY(map(mouseX, 0, width, 0, PI));
rotateX(map(mouseY, 0, height, 0, PI));
box(150);
translate(width/2-(mouseX), 0);
box(70);
}