xxxxxxxxxx
22
function setup() {
createCanvas(600, 600);
}
function draw() {
background(220);
noStroke();
fill("black");
ellipse(mouseX,mouseY,300);
fill("white");
//rect(120,150, 150, 300);
arc(mouseX, mouseY-75,150,150,PI+HALF_PI,HALF_PI);
arc(mouseX,mouseY,300,300,HALF_PI,PI+HALF_PI);
fill("black")
arc(mouseX,mouseY+75,150,150,HALF_PI,PI+HALF_PI);
fill("black")
ellipse(mouseX, mouseY-80,50)
fill("white")
ellipse(mouseX, mouseY+100,50)
}