xxxxxxxxxx
28
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
ellipse(0,50, 33, 33);//left circle
push();
strokeWeight(10);
fill(204, 153, 0);
ellipse(22, 50, 33, 33);//second left circle
push();
stroke(0, 102, 153);
ellipse(66, 50, 33, 33);//second right circle
pop();
pop();
ellipse(75, 50, 33, 33);//right circle
}