From d2af13b9242e1e4352ae8c49c0248b6fc543deab Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Wed, 4 Oct 2023 08:32:47 +1100 Subject: [PATCH] - Make some utilities in `vectors.h` available as constexpr. --- source/common/utility/vectors.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/source/common/utility/vectors.h b/source/common/utility/vectors.h index 986346e3e..1dedb2657 100644 --- a/source/common/utility/vectors.h +++ b/source/common/utility/vectors.h @@ -1239,7 +1239,7 @@ private: } public: - vec_t& Degrees__() { return Degrees_; } + constexpr vec_t& Degrees__() { return Degrees_; } static constexpr TAngle fromDeg(float deg) { @@ -1286,8 +1286,8 @@ public: return TAngle(bang * (90. / 16384)); } - TAngle(const TAngle &other) = default; - TAngle &operator= (const TAngle &other) = default; + constexpr TAngle(const TAngle &other) = default; + constexpr TAngle &operator= (const TAngle &other) = default; constexpr TAngle operator- () const { @@ -1536,19 +1536,19 @@ TAngle TVector3::Pitch() const } template -inline TVector2 clamp(const TVector2 &vec, const TVector2 &min, const TVector2 &max) +constexpr inline TVector2 clamp(const TVector2 &vec, const TVector2 &min, const TVector2 &max) { return TVector2(clamp(vec.X, min.X, max.X), clamp(vec.Y, min.Y, max.Y)); } template -inline TVector3 clamp(const TVector3 &vec, const TVector3 &min, const TVector3 &max) +constexpr inline TVector3 clamp(const TVector3 &vec, const TVector3 &min, const TVector3 &max) { return TVector3(std::clamp(vec.X, min.X, max.X), std::clamp(vec.Y, min.Y, max.Y), std::clamp(vec.Z, min.Z, max.Z)); } template -inline TRotator clamp(const TRotator &rot, const TRotator &min, const TRotator &max) +constexpr inline TRotator clamp(const TRotator &rot, const TRotator &min, const TRotator &max) { return TRotator(clamp(rot.Pitch, min.Pitch, max.Pitch), clamp(rot.Yaw, min.Yaw, max.Yaw), clamp(rot.Roll, min.Roll, max.Roll)); } @@ -1570,7 +1570,7 @@ inline TRotator interpolatedvalue(const TRotator &oang, const TRotator } template -inline T interpolatedvalue(const T& oval, const T& val, const double interpfrac) +constexpr inline T interpolatedvalue(const T& oval, const T& val, const double interpfrac) { return T(oval + (val - oval) * interpfrac); }