> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.6lBDBkAkzbD/rev.1
 * 
 * authors: 
 *   Tania Ferrao

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



/* @pjs preload="/static/uploaded_resources/p.10107/fuji.jpg"; */
 
PImage fuji;

 void setup() {  
    size(500, 500); 
    
    fuji = loadImage("/static/uploaded_resources/p.10107/fuji.jpg");
} 
  
void draw() {
    image (fuji, 0, 0, 500, 500);
    
noStroke ();

fill(0,0,0);
rect(240, 120, 40, 40);
color(0,0,0);
stroke(60,60,60);
strokeWeight(2);
line(226, 165, 220, 217);
line(225, 172, 233, 171);
line(226, 180, 232, 179);
line(225, 188, 231, 187);
line(224, 196, 231, 195);
line(223, 204, 230, 203);
strokeWeight(0.001);
fill(60,60,60);
quad(240, 120, 225, 125, 225, 165, 240, 160);
fill(0,0,0);
quad(225, 165, 240, 160, 280, 160, 265, 165);
fill(60,60,60);
quad(225, 125, 240, 120, 260, 105, 225, 125);
fill(0,0,0);
quad(240, 120, 280, 120, 260, 105, 260, 105);
stroke(60,60,60);
strokeWeight(2);
line(236, 160, 230, 210);
noStroke ();

}