xxxxxxxxxx
void setup (){
size (540, 540);
noStroke();
smooth();
background(0);
//noLoop();
}
void draw(){
for( int i = 60; i <540; i = i + 70){
for( int j = 60; j < 540; j = j + 70){
target(i,j);
}
}
}
void target(int x, int y){
fill(255, 0, 0);
ellipse (x, y, 60, 60);
fill(255);
ellipse(x, y, 30, 30);
fill(255, 0, 0);
ellipse(x, y, 15 ,15);
}0