Saturday, March 13, 2010
mal1 v6
// 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<30; j++) {
fill(140,90,j*10);
rotate(mouseX/600);
ellipse(j*50,0,75,mouseY);
}
}
// and click "save" when your done
void setup(){
size(300,300);
}
void draw(){
background(30,30,40);
for(int j=0; j<30; j++) {
fill(140,90,j*10);
rotate(mouseX/600);
ellipse(j*50,0,75,mouseY);
}
}