Home
last modified time | relevance | path

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

/frameworks/native/libs/math/include/math/
Dvec3.h82 constexpr TVec3(no_init) { } in TVec3() function
85 constexpr TVec3() : x(0), y(0), z(0) { } in TVec3() function
89 constexpr TVec3(A v) : x(static_cast<T>(v)), y(static_cast<T>(v)), z(static_cast<T>(v)) { } in TVec3() function
92 …constexpr TVec3(A x, B y, C z) : x(static_cast<T>(x)), y(static_cast<T>(y)), z(static_cast<T>(z)) … in TVec3() function
95 constexpr TVec3(const TVec2<A>& v, B z) : x(v.x), y(v.y), z(static_cast<T>(z)) { } in TVec3() function
99 constexpr TVec3(const TVec3<A>& v) : x(v.x), y(v.y), z(v.z) { } in TVec3() function