xxxxxxxxxx
/*-----------------------------
Animated Drawing
Created 6 Feb 2017
By Tamara Sabbagh
tamara.sabbagh@gmail.com
https://www.openprocessing.org/sketch/404635
-----------------------------*/
void setup(){
size(500, 500);
}
void draw(){
background(255);
frameRate(20);
strokeWeight(5);
for (int i = 0; i<500; i = i+25){
stroke(random(255), random(255), random(255));
line(0, i, 500, i);
fill(random(255), random(255), random(255), random(255));
ellipse(mouseX, mouseY, random(0, 50), random(0, 50));
// strokeWeight(20);
//point(mouseX+20, mouseY+40, random(0, 50));
strokeWeight(5);
}
}