summaryrefslogtreecommitdiffstats
path: root/source/Vector3d.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Vector3d.cpp')
-rw-r--r--source/Vector3d.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/source/Vector3d.cpp b/source/Vector3d.cpp
new file mode 100644
index 000000000..b2c47972a
--- /dev/null
+++ b/source/Vector3d.cpp
@@ -0,0 +1,16 @@
+#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