Maps point using the values of this matrix.
point
Point transformPoint(Point point) { return Point( (a * point.x) + (c * point.y) + e, (b * point.x) + (d * point.y) + f, ); }