#include <nitro/gx/g3imm.h>
#include <nitro/gx/g3b.h>
#include <nitro/gx/g3c.h>
void G3_MultMtx43(const MtxFx43* m);
// Below are APIs for creating the display list (command list)
void G3B_MultMtx43(GXDLInfo* info, const MtxFx43* m);
void G3C_MultMtx43(GXDLInfo* info, const MtxFx43* m);
void G3BS_MultMtx43(GXDLInfo* info, const MtxFx43* m);
void G3CS_MultMtx43(GXDLInfo* info, const MtxFx43* m);
info | Command List Information |
m |
The pointer to a 4x3 matrix. |
None.
This function premultiplies the current matrix by a 4x3 matrix. Each element of the matrix is a signed fixed-point number (sign + 19-bit integer + 12-bit decimal). If the current matrix is C
, then the new matrix, Cnew
, is in the format shown below.
G3*_MtxMode, G3*_Identity, G3*_LoadMtx43, G3*_LoadMtx44, G3*_MultMtx44, G3*_MultMtx33, G3*_PushMtx, G3*_PopMtx, G3*_StoreMtx, G3*_RestoreMtx, G3*_Scale, G3*_Translate
01/19/2004 Initial version