summaryrefslogtreecommitdiffstats
path: root/source/Vector3i.cpp
blob: 6a163a7e840fa781bee6acedae786ec573fb1b71 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include "Vector3i.h"
#include "Vector3d.h"

Vector3i::Vector3i( const Vector3d & v )
	: x( (int)v.x )
	, y( (int)v.y )
	, z( (int)v.z )
{
}