> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.p5FIPsbrJBD/rev.568
 * 
 * authors: 
 *   biabv

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




void setup(circle) {  
    size(500, 400); 
    background(5,252,232);
    frameRate(65);
} 


void draw(circle) {
 
    noFill(252);
    rectMode(CENTER);
    sz = (frameCount % 700) / 151.8;
    translate (width/2, height/3);
    rotate (TWO_PI * sz);    
    rect (5, 1, 200 * sz,  111* sz);
}