maths: add mod wrappers

This commit is contained in:
Danny Robson 2016-09-14 17:37:49 +10:00
parent c917f264c4
commit 9f3624ba3e

View File

@ -385,6 +385,32 @@ namespace util {
}
///////////////////////////////////////////////////////////////////////////
// Modulus/etc
// namespaced wrapper for `man 3 fmod`
template <typename T>
constexpr
std::enable_if_t<
std::is_floating_point<T>::value, T
>
mod (T x, T y)
{
return std::fmod (x, y);
}
template <typename T>
constexpr
std::enable_if_t<
std::is_integral<T>::value, T
>
mod (T x, T y)
{
return x % y;
}
///////////////////////////////////////////////////////////////////////////////
// angles, trig
template <typename T>