Sprout/sprout/math/atan2.hpp

54 lines
1.6 KiB
C++
Raw Normal View History

2012-05-04 14:47:54 +00:00
#ifndef SPROUT_MATH_ATAN2_HPP
#define SPROUT_MATH_ATAN2_HPP
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/math/atan.hpp>
#include <sprout/math/constants.hpp>
2012-05-05 08:35:33 +00:00
#include <sprout/math/float_promote.hpp>
2012-05-26 15:43:38 +00:00
#include <sprout/type_traits/enabler_if.hpp>
2012-05-04 14:47:54 +00:00
#if SPROUT_USE_BUILTIN_CMATH_FUNCTION
# include <cmath>
#endif
namespace sprout {
namespace math {
namespace detail {
template<
typename FloatType,
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR FloatType
atan2(FloatType y, FloatType x) {
return x < 0
2012-05-10 04:34:49 +00:00
? sprout::math::atan(y / x) + (y < 0 ? -1 : 1) * sprout::math::pi<FloatType>()
: sprout::math::atan(y / x)
2012-05-04 14:47:54 +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-05-05 08:35:33 +00:00
inline SPROUT_CONSTEXPR typename sprout::math::float_promote<ArithmeticType1, ArithmeticType2>::type
2012-05-04 14:47:54 +00:00
atan2(ArithmeticType1 y, ArithmeticType2 x) {
2012-05-05 08:35:33 +00:00
typedef typename sprout::math::float_promote<ArithmeticType1, ArithmeticType2>::type type;
2012-05-04 14:47:54 +00:00
return sprout::math::detail::atan2(static_cast<type>(y), static_cast<type>(x));
}
} // namespace detail
# if SPROUT_USE_BUILTIN_CMATH_FUNCTION
using std::atan2;
# else
using sprout::math::detail::atan2;
# endif
} // namespace math
using sprout::math::atan2;
} // namespace sprout
#endif // #ifndef SPROUT_MATH_ATAN2_HPP