xxxxxxxxxx
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
// draw the head
fill(255, 255, 0);
stroke(0);
ellipse(200, 200, 200);
// draw the eyes
fill(0);
noStroke();
ellipse(150, 150, 30);
ellipse(250, 150, 30);
// draw the pupils
fill(255);
ellipse(145, 145, 10);
ellipse(245, 145, 10);
// draw the mouth
stroke(0);
strokeWeight(3);
arc(200, 250, 80, 60, 0, PI);
}