xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
}
size(1200,800);
fill(10,100,30,50);
rect(0,200,1200,800);
fill(10,0,100,60);
rect(500,500,250,250);
rect(385,675,75,75);
rect(520,675,75,75);
rect(570,380,120,120);
ellipse(650,450,25,25);
ellipse(600,450,25,25);
fill(30,0,100);
rect(460,675,60,75);
rect(595,675,145,75);
rect(730,500,20,250);
rect(680,380,20,120);
fill(255,200,0);
arc(200,200,20,20,30,30);
noFill();
arc(600,600,40,40,-HALF_PI,0);
arc(600, 600, 50, 50, 0, HALF_PI);
arc(600, 600, 60, 60, HALF_PI, PI);
arc(600, 600, 70, 70, PI, PI+QUARTER_PI);
arc(600, 600, 80, 80, PI+QUARTER_PI, TWO_PI);