xxxxxxxxxx
16
function setup() {
createCanvas(windowWidth, windowHeight);
noLoop();
}
function draw() {
background(220, 20, 120);
rect(10, 10, 80);
rect(110, 10, 80);
ellipseMode(CORNER);
ellipse(210, 10, 80);
ellipse(310, 10, 80);
}