/* built with Studio Sketchpad:
* https://sketchpad.cc
*
* observe the evolution of this sketch:
* https://dflab.sketchpad.cc/sp/pad/view/ro.$2N14SCDJrG/rev.40
*
* authors:
* Ines Sousa
* 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, "Inês Sousa - 02 - Bolinhas saltitantes", created by Ines Sousa
// http://dflab.sketchpad.cc/sp/pad/view/ro.9mnWFRTEdteCpK/rev.269
void setup() {
size( 300, 300)
}
void draw() {
background(500, 10, 45)
stroke()
fill(30, 10, 0);
ellipse(56, 46 + random (0, 30), 55, 55);
stroke()
fill (10, 5, 30)
ellipse(250, 46 + random (30, 0), 55, 55);
stroke
}