Friday, June 22, 2012

having a go

void setup() { 
  size(500,500); 
    background(200,30,90); 


  
void draw() { 
  
  noStroke();
  fill(mouseX,mouseY,10,10); 
  rect(mouseX,mouseY, 100,100);
  fill (200,10,50);
  rect(mouseY,mouseX, 100,100); 
  
  triangle (30, 75, 58, 20, 86, 75);
  
  strokeWeight (random(2,10));
  stroke (30,100,200);
  triangle(30, 75, 58, 20, 86, 75);   
}

info info

submitted by: xlaurajanesx
views: 24


Tags:

comments comment

loading loading...

 

Add a comment: