xxxxxxxxxx
25
function setup() {
//set canvas: passport size
createCanvas(410, 530);
//white background
background(255);
//bodice
stroke(51);
quad(120, 265, 70, 530, 340, 530, 290, 265); //counterclockwise starting from left top
//hair
//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);
//head
fill(255);
circle(205, 220, 200);
}