Sunday, September 27, 2009

for blocks

int i = 0;


void setup (){
  size(400,400);
  background(255);
  
  }
  
  
  void draw (){
  
  for (int i = 0; i < 21; i++){ 
    
    rect(mouseX+i,mouseY+i,i,i);
    



}

   
  
  
  }

info info

submitted by: sophie_mcdonald
views: 



treeThis sketch has a parent
Tags:

comments comment

loading loading...

 

Add a comment: