CompMatrixPerforms composite coordinate transformation | |||||||
Arguments
Return ValueThe result matrix m2 is returned.ExplanationThe composite coordinate transformation of matrix m0 and matrix m1 (including translation) is performed.The result is placed in matrix m2. The following algorithm is used. [m2->m] = [m0->m] * [m1->m] (m2->t) = [m0->m] * (m1->t) + (m0->t) However the values of the m1->t elements must be within the range of [-215,215). The argument format is as follows::
NotesThis function destroys the rotation matrix. |