xxxxxxxxxx
39
function setup() {
createCanvas(500, 500);
}
function draw() {
background(220);
var x = mouseX;
var y = mouseY; // 200
strokeWeight(0);
fill("white");
//head
circle(x ,y, 240);
circle(x + 70, y - 70, 120);
circle(x - 70, y - 70, 120);
//nose
fill("black");
arc(x , y + 40, 40, 40, 0, PI);
strokeWeight(10);
//glasses
fill("black");
arc(x + 70, y - 10, 100, 100, 0, PI);
arc(x - 70, y - 10, 100, 100, 0, PI);
ellipse(x, y , 70, 10);
//mouth
ellipse(x, y + 90 , 90, 20);
}