> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://plato.sketchpad.cc/sp/pad/view/ro.z0gYc-hEysG/rev.15
 * 
 * authors: 
 *   Bager Akbay

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



//Fırati ciziyoruz

//Arkaplani beyaz renge boyaylim 
//Renk degerlerin RGB olacak.
background(255,255,255);

//Cizgi kalinligimizi belirliyoruz
strokeWeight(2);

//Ten rengini ayarlayalim
fill(255,238,228);
//Kafayi cizelim
ellipse(50,50,80,75);

fill(255,255,255); //göz beyazı
ellipse(40,38,15,14);//sol göz
ellipse(53,40,15,14);//sağ göz

fill(0,0,0);//göz bebkleri rengi
ellipse(38,38,2,2);//sol göz bebegi
ellipse(51,40,2,2);//sag goz bebegi

//Saclar icin rengi biraz aciyoruz
stroke(125);
//Eger gri tonlarinda bir renk yaratacaksak 
//RGB  yerine tek sayi ile verebiliriz 
//stroke(125) aslinda stroke(125,125,125) ile ayni olacaktir.

//Saclari cizelim
line(28,19,29,26);
line(36,15,37,23);
line(44,11,45,20);
line(55,11,53,20);
line(66,15,63,23);
line(75,19,72,25);

//Burnu karalayalim
line(44,45,45,51);
line(41,47,47,49);
line(42,45,46,51);
line(43,42,48,48);
line(41,45,45,51);