diff options
author | Mattes D <github@xoft.cz> | 2014-07-10 12:59:02 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-07-10 12:59:02 +0200 |
commit | e4828f0072a872c555b3db9b5c9b567d3d29423e (patch) | |
tree | e8137f2a6b6e5c59502dca4520e0566ad551adc0 | |
parent | Removed lilypad from plains village prefabs. (diff) | |
parent | Fixed a missing "inline" keyword. (diff) | |
download | cuberite-e4828f0072a872c555b3db9b5c9b567d3d29423e.tar cuberite-e4828f0072a872c555b3db9b5c9b567d3d29423e.tar.gz cuberite-e4828f0072a872c555b3db9b5c9b567d3d29423e.tar.bz2 cuberite-e4828f0072a872c555b3db9b5c9b567d3d29423e.tar.lz cuberite-e4828f0072a872c555b3db9b5c9b567d3d29423e.tar.xz cuberite-e4828f0072a872c555b3db9b5c9b567d3d29423e.tar.zst cuberite-e4828f0072a872c555b3db9b5c9b567d3d29423e.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Vector3.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Vector3.h b/src/Vector3.h index 9e855b8af..c175bf135 100644 --- a/src/Vector3.h +++ b/src/Vector3.h @@ -316,6 +316,15 @@ protected: +template <> inline Vector3<int> Vector3<int>::Floor(void) const +{ + return *this; +} + + + + + template <typename T> const double Vector3<T>::EPS = 0.000001; |