xxxxxxxxxx
38
function setup() {
createCanvas(400, 400);
noStroke();
}
let rot = 0;
function draw() {
background(220,180,0);
translate(width/2, height/2);
fill(255);
circle(0,0,10);
push();
fill(0,0,255);//blue
rotate(rot);
translate(100,0);
circle(0,0,20);
pop();
push();
fill(255,0,0);//red
rotate(rot);
scale(0.75);
translate(50,0);
circle(0,0,20);
push();
translate(30,0);
rotate(-rot*3);
scale(0.35);
ellipse(0,0,20,40);//small red satellite
pop();
pop();
rot += 0.01;
}