xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100,20,10);
}
function draw() {
noStroke();
fill(150, 0, 150);
circle(300, 300, 400);
fill(0, 150, 100);
rect(300, 300, 250, 350, 50);
fill(200, 100, 50);
ellipse(100, 300, 150, 250);
ellipse(500, 300, 150, 250);
fill(50, 100, 200);
circle(100, 300, 80);
circle(500, 300, 80);
fill(100, 200, 100);
rect(300, 100, 400, 50);
rect(300, 500, 400, 50);
fill(250, 50, 50);
circle(100, 100, 50);
circle(500, 100, 50);
circle(100, 500, 50);
circle(500, 500, 50);
}