xxxxxxxxxx
23
function setup() {
createCanvas(500,500);
let centX = 125;
let centY = 200;
background(0);
noStroke();
fill("#76c2cf");
circle(centX, centY, 150);
circle(375, centY, 150);
fill("#00FF00");
ellipse(centX, centY, 45, 150);
ellipse(375, centY, 45, 150);
fill("#ff6863")
// ellipse mouth
// ellipse(250, 350, 60, 10);
// triangular mouth
// triangle(220, 340, 250, 360, 280, 340);
//arc mouth
noFill();
strokeWeight(7);
stroke("#ff6863");
arc(250, 325, 80, 40, 0, PI);
}