Rename some mtx functions

This commit is contained in:
Ryan Dwyer
2021-11-06 11:41:04 +10:00
parent f9a966fb6c
commit 148f2d0656
36 changed files with 847 additions and 843 deletions
+19 -19
View File
@@ -4,20 +4,20 @@
#include "data.h"
#include "types.h"
void mtx000159b0(Mtxf *matrix);
void mtx000159fc(Mtxf *matrix, Mtxf *arg1);
void mtx00015a00(Mtxf *matrix, Mtxf *arg1, Mtxf *arg2);
void mtx00015b10(Mtxf *matrix, struct coord *coord);
void mtx00015b14(Mtxf *matrix, struct coord *coord, struct coord *arg2);
void mtx00015b64(Mtxf *arg0, struct coord *coord);
void mtx00015b68(Mtxf *matrix, struct coord *arg1, struct coord *arg2);
void mtx4LoadIdentity(Mtxf *mtx);
void mtx4MultMtx4InPlace(Mtxf *multmtx, Mtxf *subject);
void mtx4MultMtx4(Mtxf *mtx1, Mtxf *mtx2, Mtxf *dst);
void mtx4RotateVecInPlace(Mtxf *mtx, struct coord *vec);
void mtx4RotateVec(Mtxf *mtx, struct coord *vec, struct coord *dst);
void mtx4TransformVecInPlace(Mtxf *mtx, struct coord *vec);
void mtx4TransformVec(Mtxf *mtx, struct coord *vec, struct coord *dst);
void mtx00015be0(Mtxf *matrix1, Mtxf *matrix2);
void mtx00015be4(Mtxf *arg0, Mtxf *arg1, Mtxf *arg2);
void mtx00015cd8(f32 arg0[3][3], f32 arg1[3][3]);
void mtx00015d18(Mtxf *matrix, Mtxf *arg1);
void mtx00015d54(f32 realrot[3][3], Mtxf *matrix);
void mtx00015da0(Mtxf *arg0, f32 arg1[3][3]);
void mtx00015dd4(struct coord *pos, Mtxf *matrix);
void mtx3Copy(f32 src[3][3], f32 dst[3][3]);
void mtx4Copy(Mtxf *src, Mtxf *dst);
void mtx3ToMtx4(f32 src[3][3], Mtxf *dst);
void mtx4ToMtx3(Mtxf *src, f32 dst[3][3]);
void mtx4SetTranslation(struct coord *pos, Mtxf *mtx);
void mtx00015df0(f32 arg0, Mtxf *matrix);
void mtx00015e24(f32 mult, f32 *matrix);
void mtx00015e4c(f32 arg0, Mtxf *matrix);
@@ -33,11 +33,11 @@ void mtx00016110(f32 mtx1[3][3], f32 mtx2[3][3]);
void mtx00016140(f32 mtx1[3][3], f32 mtx2[3][3], f32 dst[3][3]);
void mtx000161b0(f32 arg0[3][3], f32 src[3], f32 dest[3]);
void mtx00016208(f32 mtx[3][3], struct coord *coord);
void mtx00016248(struct coord *coord, f32 angle, Mtxf *matrix);
void mtx000162e8(f32 angle, Mtxf *matrix);
void mtx00016374(f32 angle, Mtxf *matrix);
void mtx00016400(f32 angle, Mtxf *matrix);
void mtx0001648c(struct coord *coord, Mtxf *dest);
void mtx4LoadYRotationWithTranslation(struct coord *pos, f32 radians, Mtxf *mtx);
void mtx4LoadXRotation(f32 radians, Mtxf *mtx);
void mtx4LoadYRotation(f32 radians, Mtxf *mtx);
void mtx4LoadZRotation(f32 radians, Mtxf *mtx);
void mtx4LoadRotation(struct coord *rot, Mtxf *mtx);
u32 mtx000165d8(void);
void mtx000166a4(struct coord *pos, struct coord *rot, Mtxf *matrix);
void mtx000166dc(struct coord *pos, Mtxf *matrix);
@@ -53,8 +53,8 @@ void mtx00016b58(Mtxf *matrix, f32 posx, f32 posy, f32 posz, f32 lookx, f32 look
void mtx00016d58(Mtxf *matrix, f32 posx, f32 posy, f32 posz, f32 lookx, f32 looky, f32 lookz, f32 upx, f32 upy, f32 upz);
u32 mtx00016dcc(f32 arg0, f32 arg1);
u32 mtx00016e98(void);
void mtx00017028(f32 mtx[4][4], f32 radians, f32 x, f32 y, f32 z);
void mtx00017070(f32 src[4][4], f32 dst[4][4]);
void mtx4Align(f32 mtx[4][4], f32 radians, f32 x, f32 y, f32 z);
void mtx4LoadRotationFrom(f32 src[4][4], f32 dst[4][4]);
u32 mtx000170e4(void);
u32 mtx0001719c(void);
u32 mtx000172f0(void);