Searched defs:QUAT (Results 1 – 2 of 2) sorted by relevance
| /CTR-SDK-0.13.2/sources/libraries/math/ARMv6/ |
| D | math_Quaternion.cpp | 33 asm QUAT* QUATMultAsm(QUAT*, const QUAT*, const QUAT* ) in QUATMultAsm() argument
|
| /CTR-SDK-0.13.2/include/nn/math/ |
| D | math_Quaternion.h | 63 struct QUAT : public QUAT_ struct 66 typedef QUAT self_type; argument 69 QUAT() {} in QUAT() argument 70 QUAT(const f32* p) { x = p[0]; y = p[1]; z = p[2]; w = p[3]; } in QUAT() argument 71 QUAT(const QUAT_& rhs) { x = rhs.x; y = rhs.y; z = rhs.z; w = rhs.w; } in QUAT() argument 72 QUAT(f32 fx, f32 fy, f32 fz, f32 fw) { x = fx; y = fy; z = fz; w = fw; } in QUAT() argument 90 …self_type operator + (const self_type& rhs) const { QUAT tmp; (void)QUATAdd(&tmp, this, &rhs); ret… argument 91 …self_type operator - (const self_type& rhs) const { QUAT tmp; (void)QUATSub(&tmp, this, &rhs); ret… argument 92 self_type operator * (f32 f) const { QUAT tmp; (void)QUATScale(&tmp, this, f); return tmp; } argument
|