Home
last modified time | relevance | path

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

/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/math/
Dmath_Quaternion.h30 NN_MATH_INLINE QUAT* QUATSub(QUAT* pOut, const QUAT* q1, const QUAT* q2);
83 self_type& operator -= (const self_type& rhs) { (void)QUATSub(this, this, &rhs); return *this; }
91 …self_type operator - (const self_type& rhs) const { QUAT tmp; (void)QUATSub(&tmp, this, &rhs); ret…
211 inline QUAT* QUATSub(QUAT* pOut, const QUAT& q1, const QUAT& q2) { return QUATSub( pOut, &q1, &q2 )… in QUATSub() function
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/math/inline/
Dmath_Quaternion.ipp65 QUATSub(QUAT *pOut, const QUAT *q1, const QUAT *q2)