-- " ben_lines // LINES
//Ben Meyers

int x = 0;
int y = 0;
int i = 0;

void setup() {
size(400,400);
//background(0);
noFill();
//framerate(30);
}

void loop () {
for(int y = 0; y<height; y++) {
stroke(color(random(50), random(50), (100 + random(155))));
for (int x = 0; x<width; x++) {
point(x, y);
x = x + int(random(3));
}
}
stroke(i);
strokeWeight(2);
line(0, x, width, x);
x = x + 1;
y = y + 1;
if (y == height+2) {
x = 0;
y = 0;
i = int(random(255));
}
}
"