Browse Source

AP_Math: define golden ratio constant

master
Gustavo Jose de Sousa 9 years ago committed by Lucas De Marchi
parent
commit
26959f1448
  1. 4
      libraries/AP_Math/definitions.h

4
libraries/AP_Math/definitions.h

@ -13,6 +13,8 @@
#ifndef M_PI_2 #ifndef M_PI_2
#define M_PI_2 (M_PI / 2) #define M_PI_2 (M_PI / 2)
#endif #endif
#define M_GOLDEN 1.618033988749894
#else // Standard single precision math #else // Standard single precision math
#ifdef M_PI #ifdef M_PI
#undef M_PI #undef M_PI
@ -23,6 +25,8 @@
#undef M_PI_2 #undef M_PI_2
#endif #endif
#define M_PI_2 (M_PI / 2) #define M_PI_2 (M_PI / 2)
#define M_GOLDEN 1.6180339f
#endif #endif
#define M_2PI (M_PI * 2) #define M_2PI (M_PI * 2)

Loading…
Cancel
Save