Home
last modified time | relevance | path

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

/CTR-SDK-4.2.5/include/nn/math/
Dmath_Vector2.h236 VEC2() {} in VEC2() function
238 explicit VEC2(const f32* p) { x = p[0]; y = p[1]; } in VEC2() function
240 VEC2(const VEC2_& v) { x = v.x; y = v.y; } in VEC2() function
242 VEC2(f32 fx, f32 fy) { x = fx; y = fy; } in VEC2() function