xxxxxxxxxx
48
function setup() {
createCanvas(400, 400);
}
function draw() {
background(255);
//arms
strokeWeight(1);
line(250, 250, 325, 200);
line(250, 280, 50, 200);
//body
strokeWeight(1);
ellipse(200, 300, 130, 250);
//face
ellipse(200, 150, 140, 150);
//glasses
circle(170, 150, 50);
circle(230, 150, 50);
line(194, 150, 206, 150);
line(134, 130, 145, 150);
line(268, 130, 255, 150);
//eyes
ellipse(170, 150, 10, 20);
ellipse(230, 150, 10, 20);
//smile
arc(200, 195, 20, 20, 0, PI);
//Hair
//arc(210, 110, 120, 85, 3.5, 0.28, CHORD);
//arc(201, 120, 130, 130, PI, 5.78, CHORD);
//cap
ellipse(270, 100, 80, 20);
arc(200, 110, 120, 120, PI, 0, CHORD);
//pocket
square(200, 250, 45, 0, 0, 10, 10);
}