xxxxxxxxxx
67
function setup() {
createCanvas(600, 700);
background('#93FC00');
rectMode(CENTER);
}
function draw() {
//base rectangle
fill('#F9FC00');
noStroke();
rect(300,300,300,490,130);
//hair
noFill();
strokeWeight(4);
stroke(0);
ellipse(300,80,200,100);
ellipse(250,80,200,100);
//cover hair
fill('#F9FC00');
noStroke();
rect(290,160,260,200,150,150,0,0);
//ear
rect(460,380,80,80,40);
//eyebrow
ellipse(160,210,50);
//left eye
stroke(0);
fill(255);
ellipse(190,260,130);
ellipse(190,260,7);
//mouth
noStroke();
fill('#FBC844');
ellipse(245,460,150);
rect(220,410,230,210,90);
//nose
fill('#F9FC00');
rect(270,305,300,65,35);
//right eye
stroke(0);
fill(255);
ellipse(300,260,130);
ellipse(300,260,7);
//mouth opening
ellipse(275,450,30,15);
//ear opening
noFill();
ellipse(460,380,15,30);
//jigjag hair squiggle
line(380,320,420,220);
line(450,320,420,220);
line(450,320,480,220);
line(510,320,480,220);
}