Searched defs:tvec3 (Results 1 - 1 of 1) sorted by relevance

/frameworks/native/include/ui/
H A Dvec3.h29 class tvec3 : public TVecProductOperators<tvec3, T>, class in namespace:android
30 public TVecAddOperators<tvec3, T>,
31 public TVecUnaryOperators<tvec3, T>,
32 public TVecComparisonOperators<tvec3, T>,
33 public TVecFunctions<tvec3, T>
64 explicit tvec3(no_init) { } function in class:android::tvec3
67 tvec3() : x(0), y(0), z(0) { } function in class:android::tvec3
71 tvec3(A v) : x(v), y(v), z(v) { } function in class:android::tvec3
74 tvec3( function in class:android::tvec3
77 tvec3(const tvec2<A>& v, B z) : x(v.x), y(v.y), z(z) { } function in class:android::tvec3
80 explicit tvec3(const tvec3<A>& v) : x(v.x), y(v.y), z(v.z) { } function in class:android::tvec3
83 tvec3(const Impersonator< tvec3<A> >& v) function in class:android::tvec3
89 tvec3(const Impersonator< tvec2<A> >& v, B z) function in class:android::tvec3
[all...]

Completed in 164 milliseconds