xxxxxxxxxx
int eSize = 15;
size(400,400);
background(255);
noStroke();
//fill(0);
smooth();
for(int y=0; y<400; y+=10) {
for(int x = 0; x <=400; x +=10){
//stroke(255, i, i);
fill(0,y,204);
ellipse(x, y, eSize, eSize);
}
}
int i = 0;
stroke(0);
fill(255);
int eSize2 = 3;
fill(255, 255, 0);
for(int y=0; y<100; y+=70) {
for(int x = 0; x <=400; x +=70){
//stroke(255, i, i);
fill(255,255,0);
ellipse(x, y, eSize2, eSize2);
}
}
for(int y=30; y<200; y+=100) {
for(int x = 0; x <=400; x +=100){
//stroke(255, i, i);
fill(255,255,0);
ellipse(x, y, eSize2, eSize2);
}
}
for(int y=40; y<300; y+=130) {
for(int x = 0; x <=400; x +=130){
//stroke(255, i, i);
fill(255,255,0);
ellipse(x, y, eSize2, eSize2);
}
}
while(i<250){
fill(255);
ellipse(i, i, eSize, eSize);
i = i + 5;
}
triangle(250,235,220,250,300,300);
triangle(260,230,215,240,300,300);
line(240,237,300,300);