#ifndef SPROUT_MATH_TAN_HPP #define SPROUT_MATH_TAN_HPP #include #include #include #include #include #if SPROUT_USE_BUILTIN_CMATH_FUNCTION # include #endif namespace sprout { namespace math { namespace detail { template< typename FloatType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR FloatType tan(FloatType x) { return sprout::math::detail::sin(x) / sprout::math::detail::cos(x); } template< typename IntType, typename sprout::enabler_if::value>::type = sprout::enabler > inline SPROUT_CONSTEXPR double tan(IntType x) { return sprout::math::detail::tan(static_cast(x)); } } // namespace detail # if SPROUT_USE_BUILTIN_CMATH_FUNCTION using std::tan; # else using sprout::math::detail::tan; # endif } // namespace math using sprout::math::tan; } // namespace sprout #endif // #ifndef SPROUT_MATH_TAN_HPP