Saturday, June 06, 2009

Pastel circles hypnosis

// just type here
// and click "submit" when done



int i = 0;

void setup()
{
  size(800,800);
  smooth();
  strokeWeight(16);
  fill(0);
  rect(0,0,800,800);
}


void draw()
{      
  i = i+16;
  noFill();
  stroke(100 + i%55 + random(1,100), 100 + i%55 + random(1,100), 100 + i%55 + random(1,100));

  translate(400,400);
  ellipse(0, 0, i%1200, i%1200);
 }


void mousePressed()
{
    background(255);    
}

infoinfo

submitted by: DARYL_Gamma

could trip all day on this one

treeThis sketch has a parent
Tags: gradient, circle, animation

commentscomment

loading loading...

 

sign in to Add a comment: