2012-05-05 09:50:17 +00:00
|
|
|
#ifndef SPROUT_MATH_HYPOT_HPP
|
|
|
|
#define SPROUT_MATH_HYPOT_HPP
|
|
|
|
|
2013-02-14 09:02:43 +00:00
|
|
|
#include <limits>
|
2012-05-05 09:50:17 +00:00
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
2012-06-23 04:22:50 +00:00
|
|
|
#include <sprout/math/detail/config.hpp>
|
2013-05-05 15:22:08 +00:00
|
|
|
#include <sprout/math/detail/float_compute.hpp>
|
|
|
|
#include <sprout/math/isnan.hpp>
|
|
|
|
#include <sprout/math/signbit.hpp>
|
2013-02-14 09:02:43 +00:00
|
|
|
#include <sprout/math/fabs.hpp>
|
2012-05-05 09:50:17 +00:00
|
|
|
#include <sprout/math/sqrt.hpp>
|
2013-05-05 15:22:08 +00:00
|
|
|
#include <sprout/type_traits/float_promote.hpp>
|
|
|
|
#include <sprout/type_traits/enabler_if.hpp>
|
2012-05-05 09:50:17 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace math {
|
|
|
|
namespace detail {
|
2013-05-05 15:22:08 +00:00
|
|
|
template<typename T>
|
|
|
|
inline SPROUT_CONSTEXPR T
|
|
|
|
hypot_impl_2(T t, T w) {
|
|
|
|
return t * sprout::math::sqrt(T(1) + w * w);
|
|
|
|
}
|
|
|
|
template<typename T>
|
|
|
|
inline SPROUT_CONSTEXPR T
|
|
|
|
hypot_impl_1(T x, T y) {
|
|
|
|
return x < y
|
|
|
|
? sprout::math::detail::hypot_impl_2(y, x / y)
|
|
|
|
: sprout::math::detail::hypot_impl_2(x, y / x)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename T>
|
|
|
|
inline SPROUT_CONSTEXPR T
|
|
|
|
hypot_impl(T x, T y) {
|
|
|
|
return sprout::math::detail::hypot_impl_1(sprout::math::fabs(x), sprout::math::fabs(y));
|
|
|
|
}
|
|
|
|
|
2012-05-05 09:50:17 +00:00
|
|
|
template<
|
|
|
|
typename FloatType,
|
|
|
|
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR FloatType
|
|
|
|
hypot(FloatType x, FloatType y) {
|
2013-05-05 15:22:08 +00:00
|
|
|
return y == std::numeric_limits<FloatType>::infinity() || y == -std::numeric_limits<FloatType>::infinity()
|
2013-02-14 09:02:43 +00:00
|
|
|
? std::numeric_limits<FloatType>::infinity()
|
|
|
|
: x == std::numeric_limits<FloatType>::infinity() || x == -std::numeric_limits<FloatType>::infinity()
|
|
|
|
? std::numeric_limits<FloatType>::infinity()
|
2013-05-05 15:22:08 +00:00
|
|
|
: sprout::math::isnan(y) ? y
|
|
|
|
: sprout::math::isnan(x) ? x
|
|
|
|
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
|
|
|
|
: std::hypot(x, y)
|
|
|
|
#else
|
|
|
|
: y == 0 ? sprout::math::fabs(x)
|
|
|
|
: x == 0 ? sprout::math::fabs(y)
|
|
|
|
: static_cast<FloatType>(sprout::math::detail::hypot_impl(
|
|
|
|
static_cast<typename sprout::math::detail::float_compute<FloatType>::type>(x),
|
|
|
|
static_cast<typename sprout::math::detail::float_compute<FloatType>::type>(y)
|
|
|
|
))
|
|
|
|
#endif
|
2013-02-14 09:02:43 +00:00
|
|
|
;
|
2012-05-05 09:50:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<
|
|
|
|
typename ArithmeticType1,
|
|
|
|
typename ArithmeticType2,
|
|
|
|
typename sprout::enabler_if<
|
|
|
|
std::is_arithmetic<ArithmeticType1>::value && std::is_arithmetic<ArithmeticType2>::value
|
|
|
|
>::type = sprout::enabler
|
|
|
|
>
|
2012-07-07 05:58:46 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::float_promote<ArithmeticType1, ArithmeticType2>::type
|
2012-05-05 09:50:17 +00:00
|
|
|
hypot(ArithmeticType1 x, ArithmeticType2 y) {
|
2012-07-07 05:58:46 +00:00
|
|
|
typedef typename sprout::float_promote<ArithmeticType1, ArithmeticType2>::type type;
|
2012-05-05 09:50:17 +00:00
|
|
|
return sprout::math::detail::hypot(static_cast<type>(x), static_cast<type>(y));
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
|
2013-05-05 15:22:08 +00:00
|
|
|
using sprout::math::detail::hypot;
|
2012-05-05 09:50:17 +00:00
|
|
|
} // namespace math
|
|
|
|
|
|
|
|
using sprout::math::hypot;
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_MATH_HYPOT_HPP
|