15constexpr auto FloatEpsilon = std::numeric_limits<float>::epsilon();
16constexpr auto DoubleEpsilon = std::numeric_limits<double>::epsilon();
18template<std::totally_ordered T>
19constexpr T Min(T a, T b)
noexcept
24template<std::totally_ordered T>
25constexpr T Max(T a, T b)
noexcept
30template<std::totally_ordered T>
31constexpr T Clamp(T val, T min, T max)
noexcept
40template<
class T, std::
floating_po
int U>
41 requires requires (T t, U u) { t + t; t - t; t * u; }
42constexpr T Lerp(T from, T to, U factor)
noexcept
44 return from + (to - from) * Clamp(factor, 0.0f, 1.0f);
47template<std::
floating_po
int T>
48constexpr T WrapAngle(T theta)
noexcept
50 constexpr auto twoPi =
static_cast<T
>(2.0L * std::numbers::pi);
51 const T modTwoPi = std::fmod(theta, twoPi);
52 return (modTwoPi > std::numbers::pi ? (modTwoPi - twoPi) : modTwoPi);
55template<std::
floating_po
int T>
56constexpr T DegreesToRadians(T degrees)
noexcept
58 return degrees * std::numbers::pi_v<T> / 180.0f;
61template<std::
floating_po
int T>
62constexpr T RadiansToDegrees(T radians)
noexcept
64 return radians * 180.0f / std::numbers::pi_v<T>;
67constexpr bool FloatEqual(
float a,
float b,
float maxAbsDiff = 0.00001f,
float maxRelDiff = FloatEpsilon)
noexcept
71 auto diff = std::fabs(a - b);
72 if(diff <= maxAbsDiff)
74 auto aAbs = std::fabs(a);
75 auto bAbs = std::fabs(b);
76 auto max = (aAbs > bAbs) ? aAbs : bAbs;
77 if(diff <= max * maxRelDiff)