diff options
Diffstat (limited to '')
-rw-r--r-- | source/Vector3i.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source/Vector3i.cpp b/source/Vector3i.cpp new file mode 100644 index 000000000..6a163a7e8 --- /dev/null +++ b/source/Vector3i.cpp @@ -0,0 +1,9 @@ +#include "Vector3i.h"
+#include "Vector3d.h"
+
+Vector3i::Vector3i( const Vector3d & v )
+ : x( (int)v.x )
+ , y( (int)v.y )
+ , z( (int)v.z )
+{
+}
\ No newline at end of file |