xxxxxxxxxx
39
// The Coding Train / Daniel Shiffman
// Video: https://youtu.be/O1mYw-3Wl_Q
let angle = 0;
function setup() {
createCanvas(400, 300, WEBGL);
}
function draw() {
background(175);
pointLight(255, 255, 255, 0, -200, 200);
ortho(-200, 200, 200, -200, 0.01, 1000);
for (let x = -200; x < 200; x += 50) {
push();
translate(x, 0, x - 200);
rotateX(angle);
rotateY(angle * 0.3);
rotateZ(angle * 1.2);
ambientMaterial(255);
noStroke();
box(25);
pop();
}
// Add a plane at bottom
translate(0, 100);
rotateX(HALF_PI);
ambientMaterial(255, 255, 255);
// Add noStroke to remove wireframe
noStroke();
plane(500, 500);
angle += 0.03;
}