xxxxxxxxxx
13
function setup() {
createCanvas(600, 600);
background(220);
fill(255, 0, 0);
strokeWeight(0);
// ellipse(50, 50, 100, 200);
// circle(400, 400, 40);
// rect(width/2, height/2, 100, 50);
ellipse(width / 2, height / 2, 100, 200);
ellipse(width / 2 + 50, height / 2, 200, 100);
}