/*============================================================================= Copyright (c) 2014 fimbul https://github.com/fimbul 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_CONSTANT_VARIABLES_HPP #define SPROUT_MATH_CONSTANT_VARIABLES_HPP #include #if SPROUT_USE_VARIABLE_TEMPLATES # include #endif // #if SPROUT_USE_VARIABLE_TEMPLATES namespace sprout { namespace math { #if SPROUT_USE_VARIABLE_TEMPLATES // // pi // template SPROUT_STATIC_CONSTEXPR T pi_v = sprout::math::pi(); // // half_pi // template SPROUT_STATIC_CONSTEXPR T half_pi_v = sprout::math::half_pi(); // // third_pi // two_thirds_pi // template SPROUT_STATIC_CONSTEXPR T third_pi_v = sprout::math::third_pi(); template SPROUT_STATIC_CONSTEXPR T two_thirds_pi_v = sprout::math::two_thirds_pi(); // // quarter_pi // three_quarters_pi // template SPROUT_STATIC_CONSTEXPR T quarter_pi_v = sprout::math::quarter_pi(); template SPROUT_STATIC_CONSTEXPR T three_quarters_pi_v = sprout::math::three_quarters_pi(); // // two_pi // four_pi // template SPROUT_STATIC_CONSTEXPR T two_pi_v = sprout::math::two_pi(); template SPROUT_STATIC_CONSTEXPR T four_pi_v = sprout::math::four_pi(); // // two_div_pi // root_two_div_pi // template SPROUT_STATIC_CONSTEXPR T two_div_pi_v = sprout::math::two_div_pi(); template SPROUT_STATIC_CONSTEXPR T root_two_div_pi_v = sprout::math::root_two_div_pi(); // // root_pi // one_div_root_pi // root_one_div_pi // two_div_root_pi // template SPROUT_STATIC_CONSTEXPR T root_pi_v = sprout::math::root_pi(); template SPROUT_STATIC_CONSTEXPR T one_div_root_pi_v = sprout::math::one_div_root_pi(); template SPROUT_STATIC_CONSTEXPR T root_one_div_pi_v = sprout::math::root_one_div_pi(); template SPROUT_STATIC_CONSTEXPR T two_div_root_pi_v = sprout::math::two_div_root_pi(); // // half // quarter // third // two_thirds // template SPROUT_STATIC_CONSTEXPR T half_v = sprout::math::half(); template SPROUT_STATIC_CONSTEXPR T quarter_v = sprout::math::quarter(); template SPROUT_STATIC_CONSTEXPR T third_v = sprout::math::third(); template SPROUT_STATIC_CONSTEXPR T two_thirds_v = sprout::math::two_thirds(); // // root_two // root_three // half_root_two // template SPROUT_STATIC_CONSTEXPR T root_two_v = sprout::math::root_two(); template SPROUT_STATIC_CONSTEXPR T root_three_v = sprout::math::root_three(); template SPROUT_STATIC_CONSTEXPR T half_root_two_v = sprout::math::half_root_two(); // // e // template SPROUT_STATIC_CONSTEXPR T e_v = sprout::math::e(); // // ln_ten // ln_two // template SPROUT_STATIC_CONSTEXPR T ln_ten_v = sprout::math::ln_ten(); template SPROUT_STATIC_CONSTEXPR T ln_two_v = sprout::math::ln_two(); // // phi // template SPROUT_STATIC_CONSTEXPR T phi_v = sprout::math::phi(); #endif // #if SPROUT_USE_VARIABLE_TEMPLATES } // namespace math } // namespace sprout #endif // #ifndef SPROUT_MATH_CONSTANT_VARIABLES_HPP