xxxxxxxxxx
22
function setup() {
createCanvas(700, 700, WEBGL);
background(250, 200, 200);
frameRate(10);
}
function draw() {
fill(250, 200, 200);
rotateY(millis(1000) / 2000);
rotateZ(millis(1000) / 2000);
cone(100, 300, 20);
}
function mousePressed() {
noLoop();
}
function mouseReleased() {
loop();
}