Function rotationMatrixOf

Returns a rotation matrix for a given radian input A rotation matrix is a matrix that, when multiplied by the column vector of a given point, rotates that point clockwise by the given angle

Matrix!(double,2,2) rotationMatrixOf (
  double theta
);