Lines Matching refs:tvec2
30 class tvec2 : public TVecProductOperators<tvec2, T>,
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) { } in tvec2() function
66 tvec2() : x(0), y(0) { } in tvec2() function
70 tvec2(A v) : x(v), y(v) { } in tvec2() function
73 tvec2(A x, B y) : x(x), y(y) { } in tvec2() function
76 explicit tvec2(const tvec2<A>& v) : x(v.x), y(v.y) { } in tvec2() function
79 tvec2(const Impersonator< tvec2<A> >& v) in tvec2() function
80 : x(((const tvec2<A>&)v).x), in tvec2()
81 y(((const tvec2<A>&)v).y) { } in tvec2()
86 typedef tvec2<float> vec2;