NcEngine
Math.h
Go to the documentation of this file.
1
5#pragma once
6
7#include <cstdint>
8#include <concepts>
9#include <cmath>
10#include <limits>
11#include <numbers>
12
13namespace nc
14{
15constexpr auto FloatEpsilon = std::numeric_limits<float>::epsilon();
16constexpr auto DoubleEpsilon = std::numeric_limits<double>::epsilon();
17
18template<std::totally_ordered T>
19constexpr T Min(T a, T b) noexcept
20{
21 return a < b ? a : b;
22}
23
24template<std::totally_ordered T>
25constexpr T Max(T a, T b) noexcept
26{
27 return a > b ? a : b;
28}
29
30template<std::totally_ordered T>
31constexpr T Clamp(T val, T min, T max) noexcept
32{
33 if(val < min)
34 val = min;
35 else if(val > max)
36 val = max;
37 return val;
38}
39
40template<class T, std::floating_point U>
41 requires requires (T t, U u) { t + t; t - t; t * u; }
42constexpr T Lerp(T from, T to, U factor) noexcept
43{
44 return from + (to - from) * Clamp(factor, 0.0f, 1.0f);
45}
46
47template<std::floating_point T>
48constexpr T WrapAngle(T theta) noexcept
49{
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);
53}
54
55template<std::floating_point T>
56constexpr T DegreesToRadians(T degrees) noexcept
57{
58 return degrees * std::numbers::pi_v<T> / 180.0f;
59}
60
61template<std::floating_point T>
62constexpr T RadiansToDegrees(T radians) noexcept
63{
64 return radians * 180.0f / std::numbers::pi_v<T>;
65}
66
67constexpr bool FloatEqual(float a, float b, float maxAbsDiff = 0.00001f, float maxRelDiff = FloatEpsilon) noexcept
68{
69 if(a == b)
70 return true;
71 auto diff = std::fabs(a - b);
72 if(diff <= maxAbsDiff)
73 return true;
74 auto aAbs = std::fabs(a);
75 auto bAbs = std::fabs(b);
76 auto max = (aAbs > bAbs) ? aAbs : bAbs;
77 if(diff <= max * maxRelDiff)
78 return true;
79 return false;
80}
81} // namespace nc