xxxxxxxxxx
// GVS
function setup() {
createCanvas(400, 600);
}
function draw() {
background (255, 198, 217);
for(var x=0; x<400; x+=80) {
for(var y=0; y<600; y+=110 ) {
fill (0)
circle (x+40,y+60,100);
fill (225)
circle(x+60,y+60, 90);
fill (0)
circle(x+60,y+60, 70);
// Background circles
//fill (255, 142, 77);
fill (166, 60, 6)
stroke(47, 5, 51);
// fill (47, 5, 51)
circle (x+48,y+70,20);
circle (x+72,y+50,20);
circle (x+72,y+70,20);
circle (x+48,y+50,20);
// Foreground Circles
// fill (47, 5, 51)
// fill(176, 4, 191);
fill (113, 0, 0)
circle (x+60,y+60,20);
circle (x+60,y+40,20);
circle (x+60,y+80,20);
circle (x+40,y+60,20);
circle (x+80,y+60,20);
}
}
}