Home | History | Annotate | Download | only in ui

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