#include <cstdint>
#include <concepts>
#include <cmath>
#include <limits>
#include <numbers>
Go to the source code of this file.
|
template<std::totally_ordered T> |
constexpr T | nc::Min (T a, T b) noexcept |
|
template<std::totally_ordered T> |
constexpr T | nc::Max (T a, T b) noexcept |
|
template<std::totally_ordered T> |
constexpr T | nc::Clamp (T val, T min, T max) noexcept |
|
template<class T , std::floating_point U>
requires requires (T t, U u) { t + t; t - t; t * u; } |
constexpr T | nc::Lerp (T from, T to, U factor) noexcept |
|
template<std::floating_point T> |
constexpr T | nc::WrapAngle (T theta) noexcept |
|
template<std::floating_point T> |
constexpr T | nc::DegreesToRadians (T degrees) noexcept |
|
template<std::floating_point T> |
constexpr T | nc::RadiansToDegrees (T radians) noexcept |
|
constexpr bool | nc::FloatEqual (float a, float b, float maxAbsDiff=0.00001f, float maxRelDiff=FloatEpsilon) noexcept |
|
|
constexpr auto | nc::FloatEpsilon = std::numeric_limits<float>::epsilon() |
|
constexpr auto | nc::DoubleEpsilon = std::numeric_limits<double>::epsilon() |
|
- Copyright
- Jaremie Romer and McCallister Romer 2024