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

            
This sketch has a 
              
              loading...