xxxxxxxxxx
19
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220, 0, 200);
rectMode(CENTER);
fill(0, 0, 255);
stroke(0, 255, 0);
strokeWeight(5);
rect(200, 200, 200, 200, 20);
fill(255, 125);
stroke(100);
strokeWeight(10);
ellipse(250, 250, 200, 75);
}