summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/Vector3.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Vector3.h b/src/Vector3.h
index 9e855b8af..0a0968c59 100644
--- a/src/Vector3.h
+++ b/src/Vector3.h
@@ -316,6 +316,15 @@ protected:
+template <> Vector3<int> Vector3<int>::Floor(void) const
+{
+ return *this;
+}
+
+
+
+
+
template <typename T>
const double Vector3<T>::EPS = 0.000001;