xxxxxxxxxx
19
function setup() {
let canvas = createCanvas(400, 400);
dommapper(canvas.elt);
// uncomment when finished mapping projection
// dommapper.hideHandles();
}
function draw() {
background(220);
fill("yellow");
circle(width/2, height/2, 150);
fill("black");
circle(width/2 - 27, height/2 - 15, 20);
circle(width/2 + 27, height/2 - 15, 20);
stroke("black");
strokeWeight(4);
noFill();
arc(width/2, height/2, 100, 100, 0.5, PI-0.5);
}