Function frustumMatrix

Setup a frustum matrix given the left, right, bottom, top, near, and far values for the frustum boundaries.

Matrix!(T,4) frustumMatrix(T) (
  T l,
  T r,
  T b,
  T t,
  T n,
  T f
);