/* Jeremy Turner #200024742. Assignment A1-07 - Create a simple, regular pattern with 6 lines...*/ void setup() { stroke(1); strokeWeight(6); background(25); } void draw() { line(3,6,9,12); line(15,18,21,24); line(27,30,33,36); line(39,42,45,48); line(51,54,57,60); line(63,66,69,72); } //I made the lines ant-like and created a close-contrast background to mirror Ad Reinhardt's late work. I hope this is ok. I could have just done simple lines as well but thought maybe I would jazz this one up.