xxxxxxxxxx
16
function setup() {
createCanvas(400, 400);
}
function draw() {
strokeWeight(12);
background(200, 200, 100);
noFill();
rect(10,10,380,380,30)
arc(200, 220, 50, 50, 0, PI/2)
ellipse(100,100,24,24);
ellipse(300,100,24,24);
arc(200, 270, 150, 50, 0, PI)
}