xxxxxxxxxx
size(400, 400); //ウインドウのサイズ(幅, 高さ)
background(255); //背景色
strokeWeight(1); //線の太さ
int eSize = 100; //円のサイズ
smooth(); //図形の輪郭の描画
for(int y = 0; y<= 400; y += 30) { //縦の列の点を描画
for(int x = 0; x <= 400; x += 30) { //横xの列の点を描画
fill(0, y, 255, 255-y); //水色から青色でグラデーションを描画
ellipse(x, y, eSize, eSize); //円を描く
}
}