2021-03-28 22:49:05 +02:00
|
|
|
#ifndef JPAMATH_H
|
|
|
|
|
#define JPAMATH_H
|
|
|
|
|
|
2024-01-19 16:22:19 -08:00
|
|
|
#include "dolphin/mtx.h"
|
2022-12-19 11:06:32 -08:00
|
|
|
#include "JSystem/JGeometry.h"
|
2021-03-28 22:49:05 +02:00
|
|
|
|
2023-08-07 18:31:06 +03:00
|
|
|
void JPAGetDirMtx(JGeometry::TVec3<f32> const& param_0, f32 (*param_1)[4]);
|
|
|
|
|
void JPAGetYZRotateMtx(s16 angleY, s16 angleZ, f32 (*param_2)[4]);
|
2021-12-06 06:51:53 -05:00
|
|
|
void JPAGetXYZRotateMtx(s16 x, s16 y, s16 z, Mtx dst);
|
2022-12-19 11:06:32 -08:00
|
|
|
void JPASetRMtxTVecfromMtx(f32 const (*param_0)[4], f32 (*param_1)[4],
|
|
|
|
|
JGeometry::TVec3<f32>* param_2);
|
2023-08-07 18:31:06 +03:00
|
|
|
f32 JPACalcKeyAnmValue(f32 param_0, u16 param_1, f32 const* param_2);
|
|
|
|
|
void JPASetRMtxSTVecfromMtx(f32 const (*param_0)[4], f32 (*param_1)[4],
|
|
|
|
|
JGeometry::TVec3<f32>* param_2, JGeometry::TVec3<f32>* param_3);
|
2021-12-06 06:51:53 -05:00
|
|
|
|
2021-03-28 22:49:05 +02:00
|
|
|
#endif /* JPAMATH_H */
|