/* built with Studio Sketchpad:
* https://sketchpad.cc
*
* observe the evolution of this sketch:
* https://dflab.sketchpad.cc/sp/pad/view/ro.NoG3g4104jx/rev.105
*
* authors:
* Sofia Gomez
* 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, "AnaLeitão_02_Caracol Rendado", created by Ana
// http://dflab.sketchpad.cc/sp/pad/view/ro.9NCSEGeCWVSWkq/rev.131
// as instruções que estiverem dentro desta função setup()
// correm uma vez quando o programa arranca
void setup() {
// tamanho da tela
size(500, 250);
// cor de fundo
background(0);
frameRate(10);
}
// as instruções que estiverem dentro desta função draw
// são executadas a cada novo frame
void draw() {
fill( 23, 123, 133);
stroke (227,225,222)
ellipseMode(CENTER);
sz = (frameCount % 1000) / 100.0;
translate (width/3, height/3);
rotate (TWO_PI * sz);
ellipse (50, 5, 5 * sz, 60 * sz);
}