Title |
Data B> |
typedef struct MthXy {
Fixed32 x; / * X coordinate * /
Fixed32 y; / * Y coordinate * /
} MthXy;
Title |
Data B> |
typedef struct MthXyz {
Fixed32 x; / * X coordinate * /
Fixed32 y; / * Y coordinate * /
Fixed32 z; / * Z coordinate * /
} MthXyz;
Title |
Data B> |
Typedef struct MthMatrix{
Fixed32 val [3] [4]; / * 3 rows and 4 columns fixed-point data * /
}MthMatrix Title |
Data B> |
Data Name |
No |
typedef struct MthMatrixTbl {
Uint16 stackSize; / * Number of entries in the matrix stack * /
MthMatrix * current; / * Current matrix pointer * /
MthMatrix * stack; / * Matrix stack pointer * /
} MthMatrixTbl;