xxxxxxxxxx
39
function setup() {
createCanvas(400, 400, WEBGL);
orbitControl();
}
function draw() {
let s = (mouseX -200)*0.01 + Math.PI/2;
background(220);
for(let y=-200; y<200; y++){
stroke(color((200-y)/2));
line(-200, y, -50, 200, y, -50);
}
let t=millis() %2000;
let tt = t * 0.2 -200;
directionalLight(250, 250, 250, 1, 1, -0.5);
ambientLight(50);
ambientMaterial(250);
rotateY(s);
noStroke();
translate(0, tt, 0);
//box();
//sphere();
{
push();
rotateX(millis()*0.002);
cone(40,60);
pop();
}
//cylinder();
translate(0, -tt, 0);
rotateX( t /2000 * Math.PI);
torus();
}