> show canvas only <


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

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



/* Yeah, haha.  I couldn't think of a name */

void setup() {
    size(400, 400);
    background(35);
    noFill();
    noStroke();
    frameRate(100);
    smooth();
}

void draw() {
     stroke(255,255,255,10);
     strokeWeight(random(20));
     fill(random(75,255), random(75,255), random(75,255), 50);
     ellipse(frameCount, frameCount, frameCount, frameCount);
     fill(random(75,255), random(75,255), random(75,255), 50);
     ellipse(width - frameCount, frameCount, frameCount, frameCount);
     fill(random(75,255), random(75,255), random(75,255), 50);
     ellipse(frameCount, height - frameCount, frameCount, frameCount);
     fill(random(75,255), random(75,255), random(75,255), 50);
     ellipse(width - frameCount, height - frameCount, frameCount, frameCount);
     if (frameCount/2 > height && frameCount/2 > width) {
         background(35);
         frameCount = 0;
     }  
 }