diff options
author | Mattes D <github@xoft.cz> | 2016-06-10 17:59:33 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2016-06-10 17:59:33 +0200 |
commit | ce30e3f6661d5a386b2b12bae73980ec76928d47 (patch) | |
tree | 2c332eef23ae5eb816d08786fb2f87535b289ca5 /src/Vector3.h | |
parent | Merge pull request #3225 from cuberite/FixAutoAPI (diff) | |
download | cuberite-ce30e3f6661d5a386b2b12bae73980ec76928d47.tar cuberite-ce30e3f6661d5a386b2b12bae73980ec76928d47.tar.gz cuberite-ce30e3f6661d5a386b2b12bae73980ec76928d47.tar.bz2 cuberite-ce30e3f6661d5a386b2b12bae73980ec76928d47.tar.lz cuberite-ce30e3f6661d5a386b2b12bae73980ec76928d47.tar.xz cuberite-ce30e3f6661d5a386b2b12bae73980ec76928d47.tar.zst cuberite-ce30e3f6661d5a386b2b12bae73980ec76928d47.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Vector3.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/Vector3.h b/src/Vector3.h index 19ab0b021..4fa9ff46c 100644 --- a/src/Vector3.h +++ b/src/Vector3.h @@ -107,19 +107,20 @@ public: return x * a_Rhs.x + y * a_Rhs.y + z * a_Rhs.z; } - inline void abs() + /** Updates each coord to its absolute value */ + inline void Abs() { x = (x < 0) ? -x : x; y = (y < 0) ? -y : y; z = (z < 0) ? -z : z; } - // We can't use a capital letter, because we wouldn't be able to call the normal Clamp function. - inline void clamp(T a_Min, T a_Max) + /** Clamps each coord into the specified range. */ + inline void Clamp(T a_Min, T a_Max) { - x = Clamp(x, a_Min, a_Max); - y = Clamp(y, a_Min, a_Max); - z = Clamp(z, a_Min, a_Max); + x = ::Clamp(x, a_Min, a_Max); + y = ::Clamp(y, a_Min, a_Max); + z = ::Clamp(z, a_Min, a_Max); } inline Vector3<T> Cross(const Vector3<T> & a_Rhs) const |