Home
last modified time | relevance | path

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

/CTR-SDK-1.1.0/CTR_SDK-1_1-20110215-en/CTR_SDK/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
85 typedef VEC4 self_type; //!< 自分の型です argument
94 VEC4() {} in VEC4() argument
96 VEC4(const f32* p) { x = p[0]; y = p[1]; z = p[2]; w = p[3]; } in VEC4() function
98 VEC4(const VEC4_& v) { x = v.x; y = v.y; z = v.z; w = v.w; } in VEC4() function
100 VEC4(f32 fx, f32 fy, f32 fz, f32 fw) { x = fx; y = fy; z = fz; w = fw; } in VEC4() argument
102 VEC4(const VEC3& v) { x = v.x; y = v.y; z = v.z; w = 0.0f; } in VEC4() argument
130 …self_type operator + (const self_type& rhs) const { VEC4 tmp; (void)VEC4Add(&tmp, this, &rhs); ret… argument
[all …]
/CTR-SDK-1.1.0/CTR_SDK-1_1-20110215-en/CTR_SDK/sources/libraries/math/ARMv6/
Dmath_Matrix44.cpp334 asm VEC4* VEC3TransformAsm(VEC4*, const MTX44*, const VEC3*) in VEC3TransformAsm() argument