xxxxxxxxxx
function setup() {
createCanvas(400, 400);
background(6, 27, 148);
}
function draw() {
fill(252, 144, 3)
arc(90, 150, 80, 80, 90, 270);
arc(310, 150, 80, 80, 90, 80);
ellipse(200, 200, 270, 330);//face shape
fill(255)
ellipse(150, 160, 70, 70);
fill(255)
ellipse(150, 160, 3, 3);
fill(255)
ellipse(250, 160, 70, 70);
ellipse(250, 160, 3, 3);
stroke(126);
line(85, 20, 85, 110);
line(310, 20, 315, 110);
line(75, 20, 95, 20);
line(300, 20, 320, 20);
strokeWeight(10)
//arc(200, 250, 90, 50, 150, 180,0);//MOUTH
arc(200, 278, 50, 150, 200, 180,350);//TONGUE
angleMode(DEGREES)
}