#ifndef SPROUT_MATH_SIN_HPP #define SPROUT_MATH_SIN_HPP #include #include #include #include #include #include #include #include #include #include namespace sprout { namespace math { namespace detail { template inline SPROUT_CONSTEXPR T sin_impl(T x) { return -sprout::math::cos(x + sprout::math::half_pi()); } template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR FloatType sin(FloatType x) { return x == std::numeric_limits::infinity() || x == -std::numeric_limits::infinity() ? std::numeric_limits::quiet_NaN() #if SPROUT_USE_BUILTIN_CMATH_FUNCTION : std::sin(x) #else : x == 0 ? sprout::math::copysign(FloatType(0), x) : static_cast(sprout::math::detail::sin_impl(static_cast::type>(x))) #endif ; } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR double sin(IntType x) { return sprout::math::detail::sin(static_cast(x)); } } // namespace detail // // sin // template< typename ArithmeticType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR typename sprout::float_promote::type sin(ArithmeticType x) { return sprout::math::detail::sin(x); } } // namespace math using sprout::math::sin; } // namespace sprout #endif // #ifndef SPROUT_MATH_SIN_HPP