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);
}
// 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);
}
comments
loading...
sign in to Add a comment: