xxxxxxxxxx
56
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
//hair
ellipseMode(CENTER);
noStroke();
fill('rgb(49,7,7)');
circle(200,170,300);
rectMode(CENTER);
rect(200,311,300);
//neck
fill('rgb(215,174,136)');
rect(200,350,80,100);
//ears
fill('rgb(220,180,144)');
ellipse(90,230,40,70);
ellipse(310,230,40,70);
//face
fill('rgb(231,201,174)');
quad(80,120,320,120,290,300,110,300);
triangle(290,300,110,300,200,350);
//bangs
fill('#310707');
arc(70, 120, 260, 120, 0, HALF_PI);
arc(330,120, 260, 120, HALF_PI, PI);
//nose
fill('#E9A78C');
triangle(200,190,220,250,180,250);
//mouth
fill('rgb(218,130,130)');
arc(200, 270, 90, 80, 0, PI);
//eyes
fill('rgb(255,245,245)');
ellipse(140,215,50,60);
ellipse(260,215,50,60);
fill('rgb(60,48,48)');
ellipse(140,221,30,40);
ellipse(260,221,30,40);
//shirt
fill('rgb(204,123,218)')
ellipse(200,398,180,80);
}