Sunday, October 10, 2010





void setup(){
  size(800,800);
  smooth();
  background(0);



  for(float x = 10; x <= width; x *= 1.25){
    for(float y = 10;y <= height;y *= 1.25){
        fill(255,0,255,5);
      stroke(255);
      ellipseMode(RADIUS);
      ellipse( width/2, height/2,x,y);
    }
  }
}

No comments:

Post a Comment