Thursday, December 05, 2013

// just type here
// and click "save" when your done


void setup() { 
  size(500,500); 
  smooth();
   background(205,105,101);

  
void draw() {  
   rotate(frameCount);
  fill(50,mouseX,mouseY); 
 rect(100,100,100,100);
  fill(0,mouseX,mouseY);
  rect(200,200,100,100);
  fill(0,mouseX,mouseY);
  rect(300,300,100,100);
  fill(0,mouseX,mouseY);
  rect(400,400,100,100);
  fill(0,mouseX,mouseY);
  rect(1000,1000,1000,1000);
  fill(0,mouseX,mouseY); 
  noStroke(); 
  ellipse(mouseX,mouseY, 2,2);

  
  
}

info info

submitted by: conorrmr
views: 54


Tags:

comments comment

loading loading...

 

Add a comment: