xxxxxxxxxx
int eSize =10;
size(400, 400);
background(12, 15, 12);
smooth();
for(int x=0; x<=400; x+=50){ //bg_line up
for(int y=0; y<=400; y+=50){
stroke(80,255,160,80);
strokeWeight(1);
line(0, x, y, 0);
}
}
for(int x=400; x>=0; x-=50){ //bg_line down
for(int y=400; y>=0; y-=50){
stroke(80,255,160,80);
strokeWeight(1);
line(400, x, y, 400);
}
}
for(int i=0; i<=360; i+=30){ //rotate_ellipse
pushMatrix();
translate(200,200);
rotate(radians(i));
noStroke();
fill(210,210,245,60);
ellipse(100,10,120,120);
popMatrix();
}
noStroke();
fill(200,250,240,40);
ellipse(200, 200, 360, 360); //large ellipse
noStroke();
fill(200,250,240,40);
ellipse(200, 200, 280, 280); //center ellipse
noStroke();
fill(230,250,240,70);
ellipse(200, 200, 100, 100); //center ellipse_small
noStroke();
fill(140,240,160,40);
rect(60, 100, 140, 180); //rect1
noStroke();
fill(95,170,150,40);
rect(180, 120, 160, 180); //rect2
noStroke();
fill(155,150,220,40);
rect(160, 80, 160, 90); //rect3
noStroke();
fill(200,200,235,40);
rect(80, 240, 150, 90); //recy4