xxxxxxxxxx
int eSize = 10;
size(400,400);
background(0,0,0);
noStroke();
fill(0);
smooth();
for (int y=200; y<=400; y+=10){
for (int x=0; x<=200; x+=10){
//stroke(255, i, i);
fill(x,y,255);
ellipse(x, y, eSize, eSize);
}
}
for (int y=0; y<=200; y+=10){
for (int x=200; x<=400; x+=10){
//stroke(255, i, i);
fill(255,y,0);
ellipse(x, y, eSize, eSize);
}
}
for (int y=150; y<=250; y+=10){
for (int x=150; x<=250; x+=10){
//stroke(255, i, i);
fill(255,255,0);
ellipse(x, y, eSize, eSize);
}
}
strokeWeight(1);
ellipse(0, 200, 50, 50);
fill(255,0,0);
strokeWeight(1);
ellipse(100, 200, 50, 50);
strokeWeight(1);
fill(255,200,85);
ellipse(200, 200, 50, 50);
strokeWeight(1);
fill(255,255,255);
ellipse(300, 200, 50, 50);
strokeWeight(1);
fill(0,0,255);
ellipse(300, 100, 50, 50);
strokeWeight(1);
fill(0,255,255);
ellipse(300, 0, 50, 50);
fill(210,200,255);
strokeWeight(1);
ellipse(0, 0, 300, 300);
fill(0,30,50);
strokeWeight(1);
ellipse(0, 0, 250, 250);
fill(255,255,255);
strokeWeight(1);
ellipse(0, 0, 200, 200);
fill(0,255,0);
strokeWeight(1);
ellipse(0, 0, 150, 150);
fill(255,0,255);
strokeWeight(1);
ellipse(0, 0, 100, 100);
fill(0,255,255);
strokeWeight(1);
ellipse(0, 0, 50, 50);
int i = 25;
noStroke();
fill(255,0,255);
while(i < 500) {ellipse(i, i, eSize, eSize); i = i + 1;}
fill(255,255,0);
rectMode(CENTER);
rect(300, 300, 100, 100);
fill(0);
rectMode(CENTER);
rect(300, 300, 70, 70);
fill(255);
rectMode(CENTER);
rect(300, 300, 60, 60);
fill(0);
rectMode(CENTER);
rect(300, 300, 50, 50);
fill(255);
rectMode(CENTER);
rect(300, 300, 40, 40);
fill(0);
rectMode(CENTER);
rect(300, 300, 30, 30);
fill(255);
rectMode(CENTER);
rect(300, 300, 20, 20);
fill(0);
rectMode(CENTER);
rect(300, 300, 10, 10);
int p = 5;
stroke(5);
fill(150,0,255);
while(p < 300) {ellipse(p, p, eSize, eSize); p = p + 1;}