/*============================================================================= Copyright (c) 2011-2014 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ #ifndef SPROUT_MATH_ACOS_HPP #define SPROUT_MATH_ACOS_HPP #include #include #include #include #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { #if SPROUT_USE_BUILTIN_CMATH_FUNCTION inline SPROUT_CONSTEXPR float builtin_acos(float x) { return __builtin_acosf(x); } inline SPROUT_CONSTEXPR double builtin_acos(double x) { return __builtin_acos(x); } inline SPROUT_CONSTEXPR long double builtin_acos(long double x) { return __builtin_acosl(x); } #endif template inline SPROUT_CONSTEXPR T acos_impl(T x) { return sprout::math::half_pi() - sprout::math::asin(x); } } // namespace detail // // acos // template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR FloatType acos(FloatType x) { return sprout::math::isnan(x) ? x : sprout::math::fabs(x) > 1 ? sprout::numeric_limits::quiet_NaN() #if SPROUT_USE_BUILTIN_CMATH_FUNCTION : sprout::math::detail::builtin_acos(x) #else : x == 1 ? FloatType(0) : static_cast(sprout::math::detail::acos_impl(static_cast::type>(x))) #endif ; } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR double acos(IntType x) { return sprout::math::acos(static_cast(x)); } } // namespace math using sprout::math::acos; } // namespace sprout #endif // #ifndef SPROUT_MATH_ACOS_HPP