#include <nitro/fx/fx_mtx43.h>
void MTX_Concat43(const MtxFx43* a, const MtxFx43* b, MtxFx43* ab);
a | The pointer to a 4x3 matrix. |
b |
The pointer to a 4x3 matrix. |
ab |
The pointer to a 4x3 matrix. |
None.
This function multiplies the 4x3 matrix *a
from the right by *b
and stores the result in *ab
. a
, b
, and ab
can be pointers to the same matrix.
01/19/2004 Initial version.