summaryrefslogtreecommitdiffstats
path: root/src/Vector3.h
diff options
context:
space:
mode:
authorarchshift <admin@archshift.com>2014-09-04 01:25:45 +0200
committerarchshift <admin@archshift.com>2014-10-09 23:57:40 +0200
commitf8d1e96ae7ac9a3483ff0a214796455946d7880f (patch)
treed54f1700231c510327e1e98042c3f21ddbe00ea6 /src/Vector3.h
parentDistortedHeightmap: Fixed crash on number rounding. (diff)
downloadcuberite-f8d1e96ae7ac9a3483ff0a214796455946d7880f.tar
cuberite-f8d1e96ae7ac9a3483ff0a214796455946d7880f.tar.gz
cuberite-f8d1e96ae7ac9a3483ff0a214796455946d7880f.tar.bz2
cuberite-f8d1e96ae7ac9a3483ff0a214796455946d7880f.tar.lz
cuberite-f8d1e96ae7ac9a3483ff0a214796455946d7880f.tar.xz
cuberite-f8d1e96ae7ac9a3483ff0a214796455946d7880f.tar.zst
cuberite-f8d1e96ae7ac9a3483ff0a214796455946d7880f.zip
Diffstat (limited to 'src/Vector3.h')
-rw-r--r--src/Vector3.h33
1 files changed, 16 insertions, 17 deletions
diff --git a/src/Vector3.h b/src/Vector3.h
index 1dcb38f64..782b0d1c9 100644
--- a/src/Vector3.h
+++ b/src/Vector3.h
@@ -4,7 +4,6 @@
#define _USE_MATH_DEFINES // Enable non-standard math defines (MSVC)
-#include <math.h>
#include <list>
#include <vector>
@@ -29,9 +28,9 @@ public:
// Hardcoded copy constructors (tolua++ does not support function templates .. yet)
- Vector3(const Vector3<float> & a_Rhs) : x((T) a_Rhs.x), y((T) a_Rhs.y), z((T) a_Rhs.z) {}
- Vector3(const Vector3<double> & a_Rhs) : x((T) a_Rhs.x), y((T) a_Rhs.y), z((T) a_Rhs.z) {}
- Vector3(const Vector3<int> & a_Rhs) : x((T) a_Rhs.x), y((T) a_Rhs.y), z((T) a_Rhs.z) {}
+ Vector3(const Vector3<float> & a_Rhs) : x(static_cast<T>(a_Rhs.x)), y(static_cast<T>(a_Rhs.y)), z(static_cast<T>(a_Rhs.z)) {}
+ Vector3(const Vector3<double> & a_Rhs) : x(static_cast<T>(a_Rhs.x)), y(static_cast<T>(a_Rhs.y)), z(static_cast<T>(a_Rhs.z)) {}
+ Vector3(const Vector3<int> & a_Rhs) : x(static_cast<T>(a_Rhs.x)), y(static_cast<T>(a_Rhs.y)), z(static_cast<T>(a_Rhs.z)) {}
// tolua_end
@@ -53,9 +52,9 @@ public:
{
double Len = 1.0 / Length();
- x = (T)(x * Len);
- y = (T)(y * Len);
- z = (T)(z * Len);
+ x = static_cast<T>(x * Len);
+ y = static_cast<T>(y * Len);
+ z = static_cast<T>(z * Len);
}
inline Vector3<T> NormalizeCopy(void) const
@@ -63,9 +62,9 @@ public:
double Len = 1.0 / Length();
return Vector3<T>(
- (T)(x * Len),
- (T)(y * Len),
- (T)(z * Len)
+ static_cast<T>(x * Len),
+ static_cast<T>(y * Len),
+ static_cast<T>(z * Len)
);
}
@@ -74,15 +73,15 @@ public:
double Len = 1.0 / Length();
a_Rhs.Set(
- (T)(x * Len),
- (T)(y * Len),
- (T)(z * Len)
+ static_cast<T>(x * Len),
+ static_cast<T>(y * Len),
+ static_cast<T>(z * Len)
);
}
inline double Length(void) const
{
- return sqrt((double)(x * x + y * y + z * z));
+ return sqrt(static_cast<double>(x * x + y * y + z * z));
}
inline double SqrLength(void) const
@@ -138,9 +137,9 @@ public:
inline Vector3<int> Floor(void) const
{
return Vector3<int>(
- (int)floor(x),
- (int)floor(y),
- (int)floor(z)
+ static_cast<int>(floor(x)),
+ static_cast<int>(floor(y)),
+ static_cast<int>(floor(z))
);
}