xxxxxxxxxx
int eSize = 500;
size(400, 400);
background(0);
noStroke();
fill(0);
//iは0から始まって、200を限度に繰り返され、繰り返すたびに3が加算されていく
for(int i=0; i<400; i+=3) {
stroke(255); //線を描く(0=黒)
noFill(); //図形の中に色を塗らない
ellipse(i, i, eSize, eSize); //円を描く
}
for(int i=0; i<400; i+=3) {
noStroke(); //線を描かない
fill(0,0,0,100); //図形の中に色を塗る
ellipse(400, 400, 500, 500); //円を描く
}
for(int i=0; i<400; i+=3) {
noStroke(); //線を描かない
fill(0,0,0,100); //図形の中に色を塗る
ellipse(0,0 , 500, 500); //円を描く
}