> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.4$EqMR2lyDe/rev.79
 * 
 * authors: 
 *   larissa helena tavares sousa brito

 * 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, "Untitled Sketch", created by larissa helena tavares sousa brito
// http://dflab.sketchpad.cc/sp/pad/view/ro.9ZiuRj3NCGjOlj/rev.195

float px;
float py;
int num_particles = 100;
float jump = 100;

void setup() {
    size(300, 300); 
}

void draw() {
    background(90, 85, 8);
 
    noStroke();
    fill (0,0,255);;
    ellipse (30 + random(0,100), 200, 50, 50);

    noStroke();
    fill (0,0,255);;
    ellipse (100 + random(0,100), 200, 50, 50);
 
    noStroke(40);
    fill (5,5,400);;
    ellipse (100, 30, 20, 10);
}