Function translationMatrixOf

Returns a translation matrix for a given x and y input The translation matrix, when multiplied by the column vector of a point with an additional row of [1.0], will return the column vector of the translated point with an additional row of [1.0]

Matrix!(double,3,3) translationMatrixOf (
  double x,
  double y
);