diff options
author | madmaxoft <github@xoft.cz> | 2014-07-10 12:37:21 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-07-10 12:37:21 +0200 |
commit | ce670accc9740ad5f096658be9b0a39b4aabf0cc (patch) | |
tree | 49670dc1590082a81fc00bdfd75a29856e92e5cb /src/Vector3.h | |
parent | Removed lilypad from plains village prefabs. (diff) | |
download | cuberite-ce670accc9740ad5f096658be9b0a39b4aabf0cc.tar cuberite-ce670accc9740ad5f096658be9b0a39b4aabf0cc.tar.gz cuberite-ce670accc9740ad5f096658be9b0a39b4aabf0cc.tar.bz2 cuberite-ce670accc9740ad5f096658be9b0a39b4aabf0cc.tar.lz cuberite-ce670accc9740ad5f096658be9b0a39b4aabf0cc.tar.xz cuberite-ce670accc9740ad5f096658be9b0a39b4aabf0cc.tar.zst cuberite-ce670accc9740ad5f096658be9b0a39b4aabf0cc.zip |
Diffstat (limited to 'src/Vector3.h')
-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..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; |