1 extern void InitMatrix(float Matrix[3][3]);
2 extern void MultMatrixes(float Matrix1[3][3], float Matrix2[3][3], int type);
3 extern void xRotateMatrix(float x, float Matrix[3][3], int type);
4 extern void yRotateMatrix(float y, float Matrix[3][3], int type);
5 extern void zRotateMatrix(float z, float Matrix[3][3], int type);
6