Subversion Repositories gelsvn

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

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