summaryrefslogtreecommitdiffstats
path: root/source/Vector3d.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Vector3d.cpp')
-rw-r--r--source/Vector3d.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/source/Vector3d.cpp b/source/Vector3d.cpp
new file mode 100644
index 000000000..987c380dc
--- /dev/null
+++ b/source/Vector3d.cpp
@@ -0,0 +1,23 @@
+
+#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
+
+#include "Vector3d.h"
+#include "Vector3f.h"
+
+
+
+
+
+Vector3d::Vector3d(const Vector3f & v )
+ : x( v.x )
+ , y( v.y )
+ , z( v.z )
+{
+}
+
+Vector3d::Vector3d(const Vector3f * v )
+ : x( v->x )
+ , y( v->y )
+ , z( v->z )
+{
+} \ No newline at end of file