xxxxxxxxxx
18
function setup() {
createCanvas(400, 400);
angleMode(DEGREES);
background('blue');
}
function draw() {
translate(width/2, height/2);
rotate(frameCount);
fill(255);
ellipse(width * 0.25, 0, width/2, height/4);
ellipse(0, -height * 0.25, height/4, width/2);
ellipse(-width/4, 0, width/2, height/4);
ellipse(0, height/4, height/4, width/2);
fill('yellow');
ellipse(0, 0, width/4, width/4);
}