xxxxxxxxxx
31
function setup() {
createCanvas(400, 400);
}
function mouseClicked() {
save("Assingment 1.png");
}
function draw() {
background(220);
// face
noStroke();
fill('#ffc66b');
ellipse(200, 200, 200);
//hat
fill(100)
arc(200, 117, 180, 50, 300, 4)
arc(200, 117, 100, 150, 9, 6)
//eyes
fill("#f74639");
circle(170, 175, 40)//left eye
circle(230, 175, 40)//right eye
//mouth
fill(20);
arc(200, 235, 90, 80, 0, PI + QUARTER_PI, CHORD);
}