xxxxxxxxxx
/*@pjs preload="takahito2.png";*/
size(400, 400); //saizu
background(255);
strokeWeight(0); //sennofutosa
ellipse(60, 200, 80, 80); //en
rectMode(CENTER); //kizyunten
rect(340, 200, 80, 80); //sikkakei
int eSize = 30;
size(400, 400);
background(255);
smooth();
//fill(0);
smooth();
for(int y = 0; y<= 400; y += 30) {
for(int x = 0; x <= 400; x += 30) {
fill(x, y, 255-x, 255-y);
ellipse(x, y, eSize, eSize);
}
}