Subversion Repositories gelsvn

Rev

Rev 2 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2 Rev 393
1
#include "Vec2i.h"
1
#include "Vec2i.h"
2
#include "Vec2f.h"
2
#include "Vec2f.h"
3
 
3
 
4
namespace CGLA {
4
namespace CGLA {
5
 
5
 
6
	Vec2i::Vec2i(const Vec2f& v):
6
	Vec2i::Vec2i(const Vec2f& v):
7
		ArithVec<int,Vec2i,2>(int(floor(v[0])), int(floor(v[1]))) {}
7
		ArithVec<int,Vec2i,2>(int(floor(v[0])), int(floor(v[1]))) {}
8
 
8
 
9
}
9
}
10
 
10