/* built with Studio Sketchpad:
* https://sketchpad.cc
*
* observe the evolution of this sketch:
* https://studio.sketchpad.cc/sp/pad/view/ro.GqbPxF7QQ4X/rev.415
*
* authors:
* Federico Renteria
* license (unless otherwise specified):
* creative commons attribution-share alike 3.0 license.
* https://creativecommons.org/licenses/by-sa/3.0/
*/
void setup(){
size(500,500);
}
void draw(){
if(mousePressed){
for(int i=0;i<500;i=i+20){
fill(random(255),random(255),random(255));
ellipse(mouseX+i/10,mouseY,100-i/5,100-i/5);
}
}
}