Home
last modified time | relevance | path

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

/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/
Dmath_Quaternion.h29 NN_MATH_INLINE QUAT* QUATAdd(QUAT* pOut, const QUAT* q1, const QUAT* q2);
82 self_type& operator += (const self_type& rhs) { (void)QUATAdd(this, this, &rhs); return *this; }
90 …self_type operator + (const self_type& rhs) const { QUAT tmp; (void)QUATAdd(&tmp, this, &rhs); ret…
210 inline QUAT* QUATAdd(QUAT* pOut, const QUAT& q1, const QUAT& q2) { return QUATAdd( pOut, &q1, &q2 )… in QUATAdd() function
/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/inline/
Dmath_Quaternion.ipp39 QUATAdd(QUAT* pOut, const QUAT* q1, const QUAT* q2)