9 #if !defined(MATHTOOLBOX_HPP) 10 #define MATHTOOLBOX_HPP 14 #include "../BasicDatatypes.hpp" 16 #if __cplusplus < 201703L 17 extern double hypot(
double x,
double y,
double z);
31 return std::abs(a - b) < 1E-11;
37 inline double sqr(
double val)
50 return std::abs(a - b) < 1E-6f;
63 template<
typename floatT>
74 template<
typename IntT>
80 return IntT (floatValue + (floatValue >= 0.0f ? + 0.5f : -0.5f));
88 template<
typename IntT>
94 return IntT (floatValue + (floatValue >= 0.0 ? + 0.5 : -0.5));