mirror of
https://github.com/zeldaret/ss
synced 2026-06-26 10:04:26 -04:00
3829ee6d48
* Rough collider shape setup * d_a_obj_toD3_stone_figure OK * Cleanup * Cleanup 2
16 lines
281 B
C
16 lines
281 B
C
#ifndef RVL_SDK_MTX_MTXVEC_H
|
|
#define RVL_SDK_MTX_MTXVEC_H
|
|
#include "rvl/MTX/mtx.h"
|
|
#include <common.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void PSMTXMultVec(const Mtx, const Vec *, Vec *);
|
|
void PSMTXMultVecSR(const Mtx, const Vec *, Vec *);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|