xxxxxxxxxx
30
function setup() {
createCanvas(400, 400);
}
function draw() {
background(255, 255, 0);
noStroke();
fill(0, 0, 50);
circle(50, height/2.5, 50);
fill(0, 0, 100);
circle(125, height/2.5, 50);
fill(0, 0, 150);
circle(200, height/2.5, 50);
fill(0, 0, 200);
circle(275, height/2.5, 50);
fill(0, 0, 255);
circle(350, height/2.5, 50);
fill(50, 0, 50);
circle(50, height/1.75, 50);
fill(100, 0, 100);
circle(125, height/1.75, 50);
fill(150, 0, 150);
circle(200, height/1.75, 50);
fill(200, 0, 200);
circle(275, height/1.75, 50);
fill(255, 0, 255);
circle(350, height/1.75, 50);
}