mirror of
https://github.com/jhasse/poly2tri.git
synced 2025-08-05 06:45:45 +02:00
Add M_PI for C99
This commit is contained in:
@@ -38,6 +38,11 @@
|
|||||||
#include <exception>
|
#include <exception>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
|
// C99 removes M_PI from math.h
|
||||||
|
#ifndef M_PI
|
||||||
|
#define M_PI 3.14159265358979323846264338327
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace p2t {
|
namespace p2t {
|
||||||
|
|
||||||
const double PI_3div4 = 3 * M_PI / 4;
|
const double PI_3div4 = 3 * M_PI / 4;
|
||||||
@@ -119,4 +124,4 @@ bool InScanArea(const Point& pa, const Point& pb, const Point& pc, const Point&
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user