xxxxxxxxxx
20
function setup() {
createCanvas(400, 400, WEBGL);
textFont("Courier New");
}
function draw() {
background(255);
stroke(color(255,0,0,10));
rotateX(frameCount / 200);
rotateY(frameCount / 100);
rotateZ(frameCount / 500);
camera(
sin(frameCount / 100) + 0,
sin(frameCount / 100) + 0,
sin(frameCount / 100) * 5 + 100
);
sphere(50);
}