Searched defs:VEC4 (Results 1 – 2 of 2) sorted by relevance
64 struct VEC4 : public VEC4_ struct70 static const VEC4& Zero() in Zero() argument78 static const VEC4& ZeroWOne() in ZeroWOne() argument85 typedef VEC4 self_type; //!< 自分の型です argument94 VEC4() {} in VEC4() argument96 VEC4(const f32* p) { x = p[0]; y = p[1]; z = p[2]; w = p[3]; } in VEC4() function98 VEC4(const VEC4_& v) { x = v.x; y = v.y; z = v.z; w = v.w; } in VEC4() function100 VEC4(f32 fx, f32 fy, f32 fz, f32 fw) { x = fx; y = fy; z = fz; w = fw; } in VEC4() function102 VEC4(const VEC3& v) { x = v.x; y = v.y; z = v.z; w = 0.0f; } in VEC4() function130 …self_type operator + (const self_type& rhs) const { VEC4 tmp; (void)VEC4Add(&tmp, this, &rhs); ret… argument[all …]
334 asm VEC4* VEC3TransformAsm(VEC4*, const MTX44*, const VEC3*) in VEC3TransformAsm() argument