math.h 271 B

1234567891011121314
  1. #include <openlibm_math.h>
  2. // Included to fix mesa issues
  3. #ifndef M_PI
  4. #define M_PI 3.14159265358979323846 /* pi */
  5. #endif
  6. #ifndef M_PI_2
  7. #define M_PI_2 1.57079632679489661923 /* pi/2 */
  8. #endif
  9. #ifndef M_PI_4
  10. #define M_PI_4 0.78539816339744830962 /* pi/4 */
  11. #endif