/* built with Studio Sketchpad:
* https://sketchpad.cc
*
* observe the evolution of this sketch:
* https://friendscentral.sketchpad.cc/sp/pad/view/ro.SO8vklB6Bjw/rev.39
*
* authors:
* Colin Angevine
* license (unless otherwise specified):
* creative commons attribution-share alike 3.0 license.
* https://creativecommons.org/licenses/by-sa/3.0/
*/
void setup() {
size(200,200);
}
void draw() {
background(100);
stroke(255); // white outline
fill(frameCount / 2); // fill color transitions over time
ellipse(width/2,height/2,mouseX+10,mouseY+10);
}
void keyPressed() {
println(key);
}