xxxxxxxxxx
38
function setup() {
createCanvas(400, 400);
angleMode(DEGREES);
strokeWeight(8);
}
function draw() {
background(220);
drawHead();
drawEyes();
drawMouth();
drawNose();
drawPupil();
}
function drawEyes() {
ellipse(150, 150, 40, 100);
ellipse(250, 150, 40, 100);
}
function drawMouth() {
arc(200, 225, 200, 160, 0, 180, CHORD);
}
function drawHead() {
circle(200, 200, 300);
}
function drawNose() {
triangle(200,180,190,210,210,210);
}
function drawPupil(){
ellipse(150,140,40,50);
ellipse(250,160,40,50);
}