//Owen D Haft
//Section D
//odh@andrew.cmu.edu
//Project 5
var Right = 0; //Declares the variable for how the series move horizontally
var Down = 0; //Declares the variable for how the series move vertically
function setup() {
createCanvas(479, 479);
background(150, 120, 200);
}
function draw() {
translate(239, 239); //Moves the array of the series to be centes on the corner
translate(-480, Down);
translate(Right, 0);
for (var y = 0; y < 500; y += 60) { //Sets up the series of
for (var x = 0; x < 500; x += 60) { //intersecting lines
strokeWeight(2);
stroke(200, 255, 255);
line(x, x, y + 80, y - 80); //Creates the Series of intersecting lines
};
};
Right = Right + 100;
Down = Down - 100;
}
I chose to play with the criss-cross idea that often shows up on wallpapers. I am a fan of complex but organized patterns so I gave the lines a steroid injection while still keeping them in an array.