#include <nitro/gx/g3imm.h>
#include <nitro/gx/g3b.h>
#include <nitro/gx/g3c.h>
void G3_StoreMtx( u32 num );
// Below are APIs for creating the display list (command list)
void G3B_StoreMtx( GXDLInfo* info, u32 num );
void G3C_StoreMtx( GXDLInfo* info, u32 num );
void G3BS_StoreMtx( GXDLInfo* info, u32 num );
void G3CS_StoreMtx( GXDLInfo* info, u32 num );This stores
the current matrix in the specified position in the stack. num is
that position, and values that are unsigned integers (integer portion of 5 bits)
from 0-30 can be set up. When the matrix mode is Projection, because
there is only 1 stack level, the value of num is reset to 0. The coordinate stack pointer moved
by either the PushMatrix or PopMatrix command is not changed by this command.
Because the position coordinate matrix stack and the directional vector matrix are connected, operations are performed on both stacks when the matrix mode is set to either Position or Position-Vector simultaneous set mode.
|
|
Command list information |
|
|
Matrix stack index |
None.
G3*_MtxMode, G3*_Identity, G3*_LoadMtx43, G3*_LoadMtx44, G3*_MultMtx43, G3*_MultMtx44, G3*_MultMtx33, G3*_PushMtx, G3*_PopMtx, G3*_RestoreMtx, G3*_Scale, G3*_Translate
01/19/2004 Initial Version