386d58b58
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 ) { }