Hi , i am doing this sketch
http://www.openprocessing.org/visuals/?visualID=9715So what i want to do is this :
I want the firs row to be a row like anyone of the current sketch , that means , equally placed , but random size and random opacity.
But then i want this row to move down to the next row , and then to the next and so on.
After the first row passes to the second , another random row is created in the first row.
The effect is the same you can see here in the text , the lower one , where the text moves from right to left, but i want to do it as if the movement is going down :
http://www.youtube.com/watch?v=T5m9WXbgJzg&feature=relatedAny ideas
heres the code
Code:
int c_opacity ;
void setup (){
size ( 400 , 800 );
smooth ();
background (255);
frameRate (3);
}
void draw (){
background (255);
int c_r = width/20;
for ( int x = c_r/2 ; x<width ; x+= width/20){
for ( int y = c_r/2 ; y<height ; y+= height/40 ){
fill (0);
//ellipseMode (CENTER);
drawC ( x,y,int (random(c_r)),int (random(c_r)));
}
}
}
void drawC (int x, int y, int r ,int r2) {
noStroke ();
fill ( #ff0044,int( random (255)));
ellipse (x,y,r,r);
}
This is the image that inspired me :