> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.PJrXTqO$MIv/rev.78
 * 
 * authors: 
 *   Sacruna

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



//This sketch builds on a prior work, "Diana Bernardo - 02 - psicadélico", created by Diana Bernardo
//http://dflab.sketchpad.cc/sp/pad/view/ro.91yJ2OFTxXSO6H/rev.104

void setup() {  
   
    size(600, 300); 
    background(141,180,161);
    frameRate(50);
} 
 
 
void draw() {
   
    noFill(800);
    
    ellipseMode(LEFT);
    
    sz = (frameCount % 500) / 151.8;
    
    translate (mouseX, mouseY);
    
    rotate (TWO_PI * sz);  
    
    ellipse (1, 1, 200 * sz,  111* sz);
}