xxxxxxxxxx
46
function setup() {
createCanvas(600, 600);
}
function draw() {
background(255, 225, 255);
noStroke();
fill(255, 255, 100);
ellipse(300, 300, 400, 400);
eye1();
eye2();
nose();
mouth();
}
function eye1() {
fill(0);
ellipse(200,300, 40,60);
stroke(0);
strokeWeight(2);
line(170, 315, 200, 328);
line(170, 325, 200, 328);
}
function eye2() {
strokeWeight(1);
fill(255);
ellipse(400, 280, 80, 40);
fill(80, 0, 0);
ellipse(400, 280, 40, 40);
fill(0);
ellipse(400, 280, 20, 20);
}
function nose() {
fill(255,255,200);
triangle(300, 280, 300, 340, 480, 330);
}
function mouth() {
noStroke();
fill(255,200,100);
ellipse(300, 410, 200, 80);
fill(255, 0, 0);
ellipse(300, 435, 120, 30);
}