Saturday, March 13, 2010
Paulv5
// just type here
// and click "save" when your done
void setup() {
size(300, 300);
}
void draw() {
background(20,10,0);
fill(255, 10, 130);
rotate(mouseX/100);
for(int i=0; i<10; i++) {
rect(i* 5 + 200, i*5 -100, mouseX, mouseY);
}}
// and click "save" when your done
void setup() {
size(300, 300);
}
void draw() {
background(20,10,0);
fill(255, 10, 130);
rotate(mouseX/100);
for(int i=0; i<10; i++) {
rect(i* 5 + 200, i*5 -100, mouseX, mouseY);
}}