Subversion Repositories gelsvn

Rev

Rev 89 | Rev 317 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 89 Rev 316
Line 16... Line 16...
16
		Vec2i() {}
16
		Vec2i() {}
17
 
17
 
18
		/// Construct 2D int vector
18
		/// Construct 2D int vector
19
		Vec2i(int _a,int _b): ArithVec<int,Vec2i,2>(_a,_b) {}
19
		Vec2i(int _a,int _b): ArithVec<int,Vec2i,2>(_a,_b) {}
20
 
20
 
-
 
21
		/// Construct a 2D integer vector with two identical coordinates.
-
 
22
		explicit Vec2i(int a): ArithVec2Int<int,Vec3i>(a,a) {}
-
 
23
 
21
		/// Convert from 2D float vector
24
		/// Convert from 2D float vector
22
		explicit Vec2i(const Vec2f& v);
25
		explicit Vec2i(const Vec2f& v);
23
  
26
  
24
	};
27
	};
25
 
28