summaryrefslogtreecommitdiffstats
path: root/src/Vector3.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2016-06-10 17:59:33 +0200
committerMattes D <github@xoft.cz>2016-06-10 17:59:33 +0200
commitce30e3f6661d5a386b2b12bae73980ec76928d47 (patch)
tree2c332eef23ae5eb816d08786fb2f87535b289ca5 /src/Vector3.h
parentMerge pull request #3225 from cuberite/FixAutoAPI (diff)
downloadcuberite-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 'src/Vector3.h')
-rw-r--r--src/Vector3.h13
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