xxxxxxxxxx
int eSize =10;
size(400, 400);
background(35, 40, 100);
noFill();
smooth();
for(int x=0; x<=400; x+=10){
for(int y=0; y<=400; y+=10){
fill(0,255-y,255-y,150);
noStroke();
rect(x, y, eSize, eSize);
}
}
for(int x=30; x<=450; x+=60){
for(int y=30; y<=450; y+=60){
stroke(130,160,255,80);
strokeWeight(3);
line(0, y, x, 0);
}
}
for(int x=200; x<=400; x+=60){
for(int y=200; y<=400; y+=60){
stroke(120, 230, 200, 130);
noFill();
ellipse(x, y, 50, 50);
}
}