xxxxxxxxxx
16
function setup() {
createCanvas(300, 400);
}
function draw() {
background(color('gold'));
strokeCap(SQUARE);
strokeWeight(20);
stroke(color('black'));
noFill();
ellipse(100, 200, 100);
arc(200, 200, 100, 100, 0, PI + HALF_PI+.5, PIE);
stroke(color('gold'));
strokeWeight(30);
line(190, 176, 280, 176);
}