> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://coderdojogvl.sketchpad.cc/sp/pad/view/ro.bBdz00jsK9k/rev.197
 * 
 * authors: 
 *   Anne Mahaffey

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



float diam;


void setup() {
  size(200,200);
  background(255);
  smooth(); 
}


void draw() {
  diam = random(20);
  noStroke();
  
  // fill(r,g,b,a);
  fill(random(50), random(100), random(255), random(255));
  
  ellipse(random(width),random(height),diam, diam);
}