From c099620c0914e10198fbeefb9371d2308ec9dc26 Mon Sep 17 00:00:00 2001 From: Antoine Gaulin Date: Thu, 30 Mar 2017 10:02:58 -0400 Subject: [PATCH] Align both M_PI and M_PI_2 values. Its easier to read this way. --- include/trick/trick_math.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/trick/trick_math.h b/include/trick/trick_math.h index 1b00b4cc..98ce1cee 100644 --- a/include/trick/trick_math.h +++ b/include/trick/trick_math.h @@ -13,11 +13,11 @@ #if ( __ghs ) #ifndef M_PI -#define M_PI 3.14159265358979323846 +#define M_PI 3.141592653589793238460 #endif #ifndef M_PI_2 -#define M_PI_2 1.570796326794896619231 +#define M_PI_2 1.570796326794896619231 #endif #endif