Home
last modified time | relevance | path

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

/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/
Dmath_Vector4.h38 NN_MATH_INLINE VEC4* VEC4Scale(VEC4* pOut, const VEC4* p, f32 scale);
124 self_type& operator *= (f32 f) { (void)VEC4Scale(this, this, f); return *this; }
125 self_type& operator /= (f32 f) { (void)VEC4Scale(this, this, 1/f); return *this; }
132 self_type operator * (f32 f) const { VEC4 tmp; (void)VEC4Scale(&tmp, this, f); return tmp; }
242 operator * (f32 f, const VEC4& rhs) { VEC4 tmp; (void)VEC4Scale(&tmp, &rhs, f); return tmp; }
262 inline VEC4* VEC4Scale(VEC4* pOut, const VEC4& v, f32 scale) { return VEC4Scale( pOut, &v, scale); } in VEC4Scale() function
/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/inline/
Dmath_Vector4.ipp122 VEC4Scale(VEC4* pOut, const VEC4* p, f32 scale)
207 (void)VEC4Scale(pOut, p, FrSqrt(VEC4LenSq(p)));
237 (void)VEC4Scale(pOut, p, FrSqrt(mag));