/* built with Studio Sketchpad:
* https://sketchpad.cc
*
* observe the evolution of this sketch:
* https://dflab.sketchpad.cc/sp/pad/view/ro.iqKT37J3iT9/rev.308
*
* authors:
* daniela fortuna
* 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, "Beatriz Bravo _02", created by biabv
// http://dflab.sketchpad.cc/sp/pad/view/ro.9aIa6YwumCUF1N/rev.568
void setup() {
size(600, 300);
background(141,182,161);
frameRate(50);
}
void draw() {
noFill(800);
ellipseMode(LEFT);
sz = (frameCount % 900) / 151.8;
translate (width/4, height/3);
rotate (TWO_PI * sz);
ellipse (1, 1, 200 * sz, 111* sz);
}