27#ifndef math_constants_hpp
28#define math_constants_hpp
32#ifdef MX_INCLUDE_BOOST
33#include <boost/math/constants/constants.hpp>
41#define MX_INTERNAL_PI_100 \
42 ( 3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679 )
43#define MX_INTERNAL_ROOT2_100 \
44 ( 1.4142135623730950488016887242096980785696718753769480731766797379907324784621070388503875343276415727 )
45#define MX_INTERNAL_LN2_100 \
46 ( 0.6931471805599453094172321214581765680755001343602552541206800094933936219696947156058633269964186875 )
57#ifdef MX_INCLUDE_BOOST
58 return boost::math::constants::pi<T>();
61 std::is_fundamental<T>::value || !std::is_fundamental<T>::value,
62 "pi<T> not specialized for type T, and MX_INCLUDE_BOOST is not defined, so I can't just use boost." );
68constexpr float pi<float>()
74constexpr double pi<double>()
80constexpr long double pi<long double>()
102#ifdef MX_INCLUDE_BOOST
103 return boost::math::constants::two_pi<T>();
106 std::is_fundamental<T>::value || !std::is_fundamental<T>::value,
107 "two_pi<T> not specialized for type T, and MX_INCLUDE_BOOST is not defined, so I can't just use boost." );
113constexpr float two_pi<float>()
119constexpr double two_pi<double>()
125constexpr long double two_pi<long double>()
147#ifdef MX_INCLUDE_BOOST
148 return boost::math::constants::half_pi<T>();
151 std::is_fundamental<T>::value || !std::is_fundamental<T>::value,
152 "half_pi<T> not specialized for type T, and MX_INCLUDE_BOOST is not defined, so I can't just use boost." );
158constexpr float half_pi<float>()
164constexpr double half_pi<double>()
170constexpr long double half_pi<long double>()
172 return static_cast<long double>(
MX_INTERNAL_PI_100 ) /
static_cast<long double>( 2 );
193#ifdef MX_INCLUDE_BOOST
194 return boost::math::constants::radian<T>();
197 std::is_fundamental<T>::value || !std::is_fundamental<T>::value,
198 "rad2deg<T> not specialized for type T, and MX_INCLUDE_BOOST is not defined, so I can't just use boost." );
204constexpr float rad2deg<float>()
210constexpr double rad2deg<double>()
216constexpr long double rad2deg<long double>()
218 return static_cast<long double>( 180 ) /
static_cast<long double>(
MX_INTERNAL_PI_100 );
238#ifdef MX_INCLUDE_BOOST
239 return boost::math::constants::root_two<T>();
242 std::is_fundamental<T>::value || !std::is_fundamental<T>::value,
243 "root_two<T> not specialized for type T, and MX_INCLUDE_BOOST is not defined, so I can't just use boost." );
249constexpr float root_two<float>()
255constexpr double root_two<double>()
261constexpr long double root_two<long double>()
283#ifdef MX_INCLUDE_BOOST
284 return boost::math::constants::ln_two<T>();
287 std::is_fundamental<T>::value || !std::is_fundamental<T>::value,
288 "ln_two<T> not specialized for type T, and MX_INCLUDE_BOOST is not defined, so I can't just use boost." );
294constexpr float ln_two<float>()
300constexpr double ln_two<double>()
306constexpr long double ln_two<long double>()
327#ifdef MX_INCLUDE_BOOST
328 return boost::math::constants::third<T>();
331 std::is_fundamental<T>::value || !std::is_fundamental<T>::value,
332 "third<T> not specialized for type T, and MX_INCLUDE_BOOST is not defined, so I can't just use boost." );
338constexpr float third<float>()
340 return static_cast<float>( 1 ) /
static_cast<float>( 3 );
344constexpr double third<double>()
346 return static_cast<double>( 1 ) /
static_cast<double>( 3 );
350constexpr long double third<long double>()
352 return static_cast<long double>( 1 ) /
static_cast<long double>( 3 );
359template <
typename floatT>
362 return static_cast<floatT
>( 5 ) /
static_cast<floatT
>( 3 );
370template <
typename floatT>
373 return static_cast<floatT
>( 5 ) /
static_cast<floatT
>( 6 );
381template <
typename floatT>
384 return static_cast<floatT
>( 11 ) /
static_cast<floatT
>( 3 );
392template <
typename floatT>
395 return static_cast<floatT
>( 11 ) /
static_cast<floatT
>( 6 );
403template <
typename floatT>
406 return static_cast<floatT
>( 6 ) /
static_cast<floatT
>( 5 );
414template <
typename floatT>
417 return static_cast<floatT
>( 3 ) /
static_cast<floatT
>( 5 );
425template <
typename floatT>
428 return static_cast<floatT
>( 17 ) /
static_cast<floatT
>( 3 );
constexpr T pi()
Get the value of pi.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
constexpr floatT eleven_sixths()
Return 11/6 in the specified precision.
constexpr floatT seventeen_thirds()
Return 17/3 in the specified precision.
constexpr floatT five_thirds()
Return 5/3 in the specified precision.
constexpr T root_two()
Get the value of sqrt(2)
constexpr floatT eleven_thirds()
Return 11/3 in the specified precision.
constexpr T ln_two()
Get the value of ln(2)
constexpr T two_pi()
Get the value of 2pi.
constexpr floatT three_fifths()
Return 3/5 in the specified precision.
constexpr T third()
Get the value of 1/3.
constexpr T half_pi()
Get the value of pi/2.
constexpr floatT five_sixths()
Return 5/6 in the specified precision.
constexpr T rad2deg()
Get the value of 180/pi.