xxxxxxxxxx
62
function setup() {
//set canvas: passport size
createCanvas(410, 530);
//white background
background(255);
//hair
stroke(51);
//line(80, 110, 330, 110);
//line(50,340,340,320);
fill(51);
quad(80, 110, 50, 340, 360, 340, 330, 110);
ellipseMode(CENTER);
circle(142.5, 130.5, 130.5);
circle(267.5, 130.5, 130.5);
//bodice
fill(255);
strokeWeight(3);
quad(140, 265, 70, 530, 340, 530, 270, 265);
//head
circle(205, 230, 220);
///face
//smile
fill(255);
circle(205,230,100);
//smile guides
//circle(185,272,1);
//circle(205,280,1);
//circle(225,272,1);
noStroke();
rect(145,172,35,120);
rect(230,172,35,120);
rect(145,172,120,30);
//eyes
stroke(0);
fill(0);
//circle(165,200,5);
//circle(245,200,5);
line(165,216,165,222);
line(245,216,245,222);
//eyebrows
line(150,195,170,193);
line(240,193,260,195);
///arm and hand
//arm
line(300,420,362,340);
//hand
line(362,340,360,287);
line(362,340,380,291);
fill(255);
circle(362,340,45);
}