Saturday, March 13, 2010
mal1 v5
// just type here
// and click "save" when your done
void setup(){
size(300,300);
}
void draw(){
background(30,30,40);
for(int j=0; j<20; j++) {
fill(240,j*10,j*10);
rotate(mouseX);
rect(j*20,0,20,mouseY);
}
}
// and click "save" when your done
void setup(){
size(300,300);
}
void draw(){
background(30,30,40);
for(int j=0; j<20; j++) {
fill(240,j*10,j*10);
rotate(mouseX);
rect(j*20,0,20,mouseY);
}
}