#include <nitro/fx/fx_mtx22.h>
void MTX_Concat22(const MtxFx22* a, const MtxFx22* b, MtxFx22* ab);
a | The pointer to a 2x2 matrix. |
b |
The pointer to a 2x2 matrix. |
ab |
The pointer to a 2x2 matrix. |
None.
This function multiplies the 2x2 matrix *a
from the right by *b
and stores the result in *ab
. a
, b
, and ab
can be pointers to the same matrix.
04/15/2004 Initial version.