ART CODE 4





void setup() {

  size(1280,720);

frameRate(20);

}


void draw () {

 background(#aaaaaa);

 fill(0);

 noStroke();

 for(int i = 1; i < 100; i++) {

   println(i);

   fill(random(255));

 ellipse(random (width),random(height),i*1, i*1);

 

 } 

}

Comments

Popular posts from this blog

video loops, art code 9

video loops, art code 6

art code 12