variable tTransformput transform with matrix [0,2,-2,0,50,100] into tTransform// Get the inverse of the current transformvariable tInverseputtheinverseof tTransform into tInverse// Combine the transform with its inverse to produce the identity transformconcat tTransform with tInverse
Description
The inverse of mTransform
Note: The inverse of a transform matrix is the transform that reverses the effect of the original. Combining a transform with its inverse will produce the identity transform.