summaryrefslogtreecommitdiffstats
path: root/source/Vector3d.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Vector3d.cpp')
-rw-r--r--source/Vector3d.cpp44
1 files changed, 22 insertions, 22 deletions
diff --git a/source/Vector3d.cpp b/source/Vector3d.cpp
index 075034605..987c380dc 100644
--- a/source/Vector3d.cpp
+++ b/source/Vector3d.cpp
@@ -1,23 +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 )
-{
+
+#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