Sunday, November 06, 2011

MFSIAF v2

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

void setup() {  
    size(500,500); 
    stroke(255,255,255);
}  
   
void draw() {   
  translate(250,250);
  
  background(200,30,90);  
  fill(20,40,110, 100);   
 
  
  float cnt = frameCount/100;

    strokeWeight(cnt%20);

  rotate(cnt);
  scale(abs(0.5+sin(cnt)*cos(0.5*cnt)));
  
  rect(sin(cnt)*100,sin(10*sin(cnt))*100, 100,100); 
  rect(0,sin(cnt)*100,100,100);
   
  rect(mouseX-30, mouseY-50, 50, 200);
}

info info

submitted by: spam04
views: 

My first sketch is a face

treeThis sketch has a parent
Tags:

comments comment

loading loading...

 

Add a comment: