mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-06-04 18:28:49 -04:00
21 lines
423 B
C
21 lines
423 B
C
#ifndef SKIN_MATRIX_H
|
|
#define SKIN_MATRIX_H
|
|
|
|
#include "libultra/ultratypes.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"{
|
|
#endif
|
|
|
|
void Skin_Matrix_PrjMulVector(MtxF*, Vec3f*, Vec3f*, f32*);
|
|
void Skin_Matrix_MulMatrix(MtxF*, MtxF*, MtxF*);
|
|
void Skin_Matrix_SetScale(MtxF* , f32 , f32, f32);
|
|
void Skin_Matrix_SetTranslate(MtxF*, f32, f32, f32);
|
|
void Skin_Matrix_SetRotateXyz_s(MtxF*, s16, s16, s16);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |