xxxxxxxxxx
int eSize = 20;
size(400, 400);
background(175, 154, 217);
for (int y = 0; y <= height; y += 10) {
for (int x = 0; x <= width; x += 10) {
if (x < 200 && y < 400) {
fill(164-x, x-120, 150-x);
noStroke();
}
rect(x, y, eSize, eSize);
}
}
for (int y = 0; y <= height; y += 10) {
for (int x = 0; x <= width; x += 400) {
if (x < width/2 && y < height/2) {
stroke(18, 88, 34);
noFill();
strokeWeight(2);
}
if (x > width/2 && y > height/2) {
stroke(164, 50, 150);
noFill();
strokeWeight(2);
}
ellipse(x, y, 700, 800); }
}