Searched refs:QUATScale (Results 1 – 2 of 2) sorted by relevance
| /CTR-SDK-4.2.5/include/nn/math/ |
| D | math_Quaternion.h | 155 NN_MATH_INLINE QUAT* QUATScale(QUAT* pOut, const QUAT* q, f32 scale); 277 self_type& operator *= (f32 f) { (void)QUATScale(this, this, f); return *this; } 295 self_type operator * (f32 f) const { QUAT tmp; (void)QUATScale(&tmp, this, f); return tmp; } 326 operator * (f32 f, const QUAT& rhs) { QUAT tmp; (void)QUATScale(&tmp, &rhs, f); return tmp; } 404 inline QUAT* QUATScale(QUAT* pOut, const QUAT& q, f32 scale) { return QUATScale( pOut, &q, scale );… in QUATScale() function
|
| /CTR-SDK-4.2.5/include/nn/math/inline/ |
| D | math_Quaternion.ipp | 180 QUATScale(QUAT* pOut, const QUAT* q, f32 scale)
|