36#ifndef IMT_BASE_CORE_MATH_MATHUTILS_H
37#define IMT_BASE_CORE_MATH_MATHUTILS_H
66 template<
typename Type>
67 static inline Type
truncateToRange(Type
const value, Type
const minRange, Type
const maxRange)
noexcept {
69 Type
const left {std::min<Type>(minRange, maxRange)};
70 Type
const right {std::max<Type>(minRange, maxRange)};
71 return std::min<Type>(std::max<Type>(value, left), right);
73 if (value < minRange) {
76 else if (value > maxRange) {
97 T
const floatRounding {(floatToRoundToInt >
static_cast<T
>(0)) ?
static_cast<T
>(0.5) :
static_cast<T
>(-0.5)};
99 T
const result {floatToRoundToInt + floatRounding};
100 return static_cast<int32_t>(result);
110 return (((value + 2U) / roundTo) * roundTo);
129 template<
typename Type>
132 return static_cast<Type
>(((((
static_cast<float32_t>(value) - fromLow) * (toHigh - toLow)) / (fromHigh - fromLow)) + toLow));
Mathematical utility functions.
static Type truncateToRange(Type const value, Type const minRange, Type const maxRange) noexcept
Force a value to be in the range given by min and max.
static int32_t roundToInt(T const floatToRoundToInt) noexcept
Round a floating point value to the next integer value.
static constexpr Type map(Type const value, float32_t const fromLow, float32_t const fromHigh, float32_t const toLow, float32_t const toHigh) noexcept
Re-maps a number from one range to another.
static uint32_t roundToNextFive(uint32_t const value)
Round an integer value to the next multiple of five.
This is a application specific file which is used to configure Imt.Base.Core.Math.
float float32_t
32 Bits float variable (float)
unsigned __int32 uint32_t