blob: 9ec45305fe22843d0a98e29fe74e15bce0d1da54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef RVL_SDK_MTX_QUAT_H
#define RVL_SDK_MTX_QUAT_H
#include "common.h"
#include "rvl/MTX/mtx.h"
#ifdef __cplusplus
extern "C" {
#endif
void PSQUATMultiply(const Quaternion *, const Quaternion *, Quaternion *);
void PSQUATNormalize(const Quaternion *, Quaternion *);
void C_QUATMtx(Quaternion *, const Mtx);
void C_QUATSlerp(const Quaternion *, const Quaternion *, Quaternion *, f32);
#ifdef __cplusplus
}
#endif
#endif
|