xxxxxxxxxx
22
function setup() {
createCanvas(400, 400);
noStroke();
angleMode(DEGREES);
}
function draw() {
background(64, 128, 255);
fill(64, 200, 64);
translate(width/2, height/2);
ellipse(0, 200, 100, 400);
push();
rotate(frameCount);
fill(255);
ellipse(100, 0, 200, 100);
ellipse(0, 100, 100, 200);
ellipse(-100, 0, 200, 100);
ellipse(0, -100, 100, 200);
pop();
fill(240, 240, 32);
ellipse(0, 0, 100);
}