Function perspectiveMatrix

Setup a perspective matrix given the field-of-view in the Y direction in degrees, the aspect ratio of Y/X, and near and far plane distances

Matrix!(T,4) perspectiveMatrix(T) (
  T fovY,
  T aspect,
  T n,
  T f
);