xxxxxxxxxx
95
function setup() {
createCanvas(500, 500);
}
function draw() {
background(159, 191, 223);
//Hair
stroke(0);
strokeWeight(1);
fill(115,64,18);
rectMode(CENTER);
rect(250,280,220,300,20);
//Face
stroke(0)
strokeWeight(1);
fill(247, 221, 212);
ellipse(250, 250, 150, 190);
//Bangs
noStroke();
fill(115,64,18);
ellipse(206, 170, 90, 70);
ellipse(288, 170, 90, 70);
//Mouth
fill(255, 102, 102);
arc(252, 310, 45, 28, 0, PI);
//Eyes
stroke(0)
strokeWeight(1);
fill(255)
ellipse(212, 252, 30, 40);
ellipse(290, 252, 30, 40);
//InnerEyes
strokeWeight(2);
fill(71, 39, 11)
ellipse(215, 257, 20, 25);
ellipse(287, 257, 20, 25);
//InnerEyes2
noStroke()
fill(0)
ellipse(217, 259, 13, 16);
ellipse(285, 259, 13, 16);
//Eyebrows
stroke(71, 39, 11);
strokeWeight(4);
noFill();
arc(212, 225, 40, 11, PI, TWO_PI, OPEN);
arc(290, 225, 40, 11, PI, TWO_PI, OPEN);
//Neck
noStroke();
fill(247, 221, 212);
rect(250, 365, 50, 55);
//body
noStroke();
fill(0);
rectMode(CENTER);
rect(250, 410, 170, 88);
//neckline
fill(247, 221, 212);
arc(250, 366, 50, 28, 0, PI);
//armlines
stroke(159, 191, 223);
strokeWeight(4);
line(200, 410, 200, 453);
line(300, 410, 300, 453);
//Necklace
stroke(192,192,192);
strokeWeight(3);
line(220, 367, 250, 400);
line(280, 367, 250, 400);
triangle(245,400, 251, 404, 255, 400)
//Earrings
stroke(192,192,192)
noFill()
ellipse(175,286,13,13)
ellipse(324,288,13,13)
}