vec2.h | 30 class tvec2 : public TVecProductOperators<tvec2, T>, class in namespace:android 31 public TVecAddOperators<tvec2, T>, 32 public TVecUnaryOperators<tvec2, T>, 33 public TVecComparisonOperators<tvec2, T>, 34 public TVecFunctions<tvec2, T> 63 explicit tvec2(no_init) { } function in class:android::tvec2 66 tvec2() : x(0), y(0) { } function in class:android::tvec2 70 tvec2(A v) : x(v), y(v) { } function in class:android::tvec2 73 tvec2(A x, B y) : x(x), y(y) { function in class:android::tvec2 76 explicit tvec2(const tvec2<A>& v) : x(v.x), y(v.y) { } function in class:android::tvec2 79 tvec2(const Impersonator< tvec2<A> >& v) function in class:android::tvec2 [all...] |