Love letter to a cyborg
//Spring
size(640, 480);
background(0);
for(int x=0; x<width; x+=20){
for(int y=0; y<height; y+=20){
fill(random(200));
ellipseMode(CORNER);
ellipse(x, y, 20, 20);
}
}
size(640, 480);
background(0);
for(int x=0; x<width; x+=20){
for(int y=0; y<height; y+=20){
fill(random(200));
ellipseMode(CORNER);
ellipse(x, y, 20, 20);
}
}
Comments
Post a Comment