Home
last modified time | relevance | path

Searched defs:VEC4 (Results 1 – 2 of 2) sorted by relevance

/CTR-SDK-2.4.0/include/nn/math/
Dmath_Vector4.h64 struct VEC4 : public VEC4_ struct
70 static const VEC4& Zero() in Zero() argument
78 static const VEC4& ZeroWOne() in ZeroWOne() argument
86 static const VEC4& One() in One() argument
93 typedef VEC4 self_type; // argument
102 VEC4() {} in VEC4() argument
104 explicit VEC4(const f32* p) { x = p[0]; y = p[1]; z = p[2]; w = p[3]; } in VEC4() argument
106 VEC4(const VEC4_& v) { x = v.x; y = v.y; z = v.z; w = v.w; } in VEC4() argument
108 VEC4(f32 fx, f32 fy, f32 fz, f32 fw) { x = fx; y = fy; z = fz; w = fw; } in VEC4() argument
110 explicit VEC4(const VEC3& v) { x = v.x; y = v.y; z = v.z; w = 0.0f; } in VEC4() argument
[all …]
/CTR-SDK-2.4.0/sources/libraries/math/ARMv6/
Dmath_Matrix44.cpp334 asm VEC4* VEC3TransformAsm(VEC4*, const MTX44*, const VEC3*) in VEC3TransformAsm() argument