Function lookAtMatrix

Setup the matrix to perform a "Look At" transformation like a first person camera

Matrix!(T,4) lookAtMatrix(T) (
  Vector!(T,3) eye,
  Vector!(T,3) center,
  Vector!(T,3) up
);