function setup() {
createCanvas(640,480);
}
function draw() {
for (var i = 0; i < 128; i++) {
line(i*5, 0, 0, 480);
line(i*5, 480, 640, 0);
line(i*5, 240, 0, 480);
line(i*5, 240, 640, 0);
}
}
I ended up liking the starkness of the black and white. I like how the use of simple lines ended up creating patterns in the corners of the drawing.