Home
last modified time | relevance | path

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

/CTR-SDK-4.2.5/include/nn/math/
Dmath_Vector3.h175 inline VEC3* VEC3Scale(VEC3* pOut, const VEC3* p, f32 scale);
289 self_type& operator *= (f32 f) { (void)VEC3Scale(this, this, f); return *this; }
311 self_type operator * (f32 f) const { VEC3 tmp; (void)VEC3Scale(&tmp, this, f); return tmp; }
473 VEC3Scale(VEC3* pOut, const VEC3* p, f32 scale) in VEC3Scale() function
521 operator * (f32 f, const VEC3& rhs) { VEC3 tmp; (void)VEC3Scale(&tmp, &rhs, f); return tmp; }
572 inline VEC3* VEC3Scale(VEC3* pOut, const VEC3& v, f32 scale) { return VEC3Scale( pOut, &v, scale );… in VEC3Scale() function