> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://studio.sketchpad.cc/sp/pad/view/ro.hLNOq2K7ulP/rev.128
 * 
 * authors: 
 *   
 *   jaruz
 *   
 *   

 * 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.347/retrato2.png"; */
        
PImage img;
void setup() {  
    background(255);
    
   size(300, 300);     
   img = loadImage("/static/uploaded_resources/p.347/retrato2.png"); 

} 

void draw() {    
    tint(mouseY+50);
  //  scale(1,2);
    image(img, mouseX,mouseY);
   
}