> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://studio.sketchpad.cc/sp/pad/view/ro.$3gS64Lnbn0/rev.2107
 * 
 * authors: 
 *   Letlhogonolo Bahumi

 * license (unless otherwise specified): 
 *   creative commons attribution-share alike 3.0 license.
 *   https://creativecommons.org/licenses/by-sa/3.0/ 
 */ 




// Pressing Control-R will render this sketch.

int i = 0; 

void setup() {    
background(255);
size(700, 600); 
   
     smooth();
strokeWeight(1);
}


void draw() {  
 
//HEAD 

stroke(0)
rect(300,65,110,80);
stroke(0)
ellipse(335,90,25,25);   
stroke(0)
ellipse(375,90,25,25);  
rect(292,85,8,35);
rect(410,85,8,35);

//NECK
rect(322,110,65,20);
rect(326,114,57,12); 


rect(335, 145, 40, 8, 8);
rect(335, 153, 40, 8, 8);

line(250, 161, 450, 161);
line(450, 161, 450, 260);
line(450, 260, 405, 370);
line(250, 161, 250, 260);
line(250,260,295,370);
line(295,370,405,370);

//ARMS
rect(244,175,6,30);
rect(206,171,38,38);
rect(217,209,16,50);

rect(450,175,6,30);
rect(456,171,38,38);
rect(467,209,16,50);

//CHEST
rect(265,176,125,60);
rect(270,181,80,50);
rect(355,181,30,50);
ellipse(418,193,28,28);
ellipse(418,193,21,21);
ellipse(418,228,28,28);
ellipse(418,228,21,21);
ellipse(275,250,12,12);
ellipse(295,250,12,12);
ellipse(315,250,12,12);
ellipse(335,250,12,12);

//CHEST LINES
line(265,270,303,360);
line(275,270,308.1,360);
line(285,270,313.2,360);
line(295,270,318.3,360);
line(305,270,323.4,360);
line(315,270,328.5,360);
line(325,270,333.6,360);
line(335,270,338.7,360);
line(345,270,343.8,360);
line(355,270,348.9,360);
line(365,270,354,360);
line(375,270,359.1,360);
line(385,270,364.2,360);
line(395,270,369.3,360);
line(405,270,374.4,360);
line(415,270,379.5,360);
line(425,270,388,360);
line(432,270,396,360);

//LEGS
rect(305,370,25,50);
rect(370,370,25,50);

//FEET
line(290,450,345,450);
line(290,450,295,420);
line(345,450,340,420);
line(295,420,317.5,405);
line(340,420,317.5,405);

line(355,450,410,450);
line(355,450,360,420);
line(410,450,405,420);
line(360,420,382.5,405);
line(405,420,382.5,405);






}