In PreMultiply mode, the translation, concatenation, etc. will occur before any transformations which are represented by the current matrix.
occur(occur(pt * Matrix1) * Matrix2) *...
In PostMultiply mode, the additional transformation will occur after any transformations represented by the current matrix.
occur(Matrix1 * Matrix2 *...* pt)