Home
last modified time | relevance | path

Searched refs:QUATSub (Results 1 – 2 of 2) sorted by relevance

/CTR-SDK-4.2.5/include/nn/math/
Dmath_Quaternion.h193 NN_MATH_INLINE QUAT* QUATSub(QUAT* pOut, const QUAT* q1, const QUAT* q2);
274 self_type& operator -= (const self_type& rhs) { (void)QUATSub(this, this, &rhs); return *this; }
292 …self_type operator - (const self_type& rhs) const { QUAT tmp; (void)QUATSub(&tmp, this, &rhs); ret…
399 inline QUAT* QUATSub(QUAT* pOut, const QUAT& q1, const QUAT& q2) { return QUATSub( pOut, &q1, &q2 )… in QUATSub() function
/CTR-SDK-4.2.5/include/nn/math/inline/
Dmath_Quaternion.ipp254 QUATSub(QUAT *pOut, const QUAT *q1, const QUAT *q2)