Home
last modified time | relevance | path

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

/CTR-SDK-4.2.5/include/nn/math/
Dmath_Vector3.h47 inline VEC3* VEC3Add(VEC3* pOut, const VEC3* p1, const VEC3* p2);
283 self_type& operator += (const self_type& rhs) { (void)VEC3Add(this, this, &rhs); return *this; }
305 …self_type operator + (const self_type& rhs) const { VEC3 tmp; (void)VEC3Add(&tmp, this, &rhs); ret…
446 VEC3Add(VEC3* pOut, const VEC3* p1, const VEC3* p2) in VEC3Add() function
569 inline VEC3* VEC3Add(VEC3* pOut, const VEC3& v1, const VEC3& v2) { return VEC3Add( pOut, &v1, &v2 )… in VEC3Add() function