EverLight

Don’t ask me about the name, but this iteration happened completely by accident. I was messing around with creating a grid of ellipses for my other idea when I decided to use lines instead. However, all i did was change “ellipse” to “line” and it created this amazingly cool, modern image.

Screen Shot 2014-09-24 at 6.06.01 PM

 

void setup(){
  size(1280,720);
  background(0);

}
void draw(){
  int orig = 0;
  int x = int(random(6,20));

  strokeWeight(1);
   for (int i=1; i

Comments are closed.