diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2018-05-07 16:35:17 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2018-08-10 14:59:29 -0500 |
commit | 28fc19533902dbc2614c949486bb4edf9450cc05 (patch) | |
tree | 999bb3f4fd762b98d1b6432089ff567d9cbaf4fb /thirdparty | |
parent | 9d1b5f4e3b58d9287addc723d8ce34626523a302 (diff) |
[Core] Change math_2d includes to vector2 includes where relevant
Diffstat (limited to 'thirdparty')
-rw-r--r-- | thirdparty/b2d_convexdecomp/b2Glue.h | 2 | ||||
-rw-r--r-- | thirdparty/misc/triangulator.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/thirdparty/b2d_convexdecomp/b2Glue.h b/thirdparty/b2d_convexdecomp/b2Glue.h index 425486356e..10c2f62361 100644 --- a/thirdparty/b2d_convexdecomp/b2Glue.h +++ b/thirdparty/b2d_convexdecomp/b2Glue.h @@ -19,7 +19,7 @@ #ifndef B2GLUE_H #define B2GLUE_H -#include "math_2d.h" +#include "vector2.h" #include <limits.h> namespace b2ConvexDecomp { diff --git a/thirdparty/misc/triangulator.h b/thirdparty/misc/triangulator.h index b6dd7e8236..d1538cfae5 100644 --- a/thirdparty/misc/triangulator.h +++ b/thirdparty/misc/triangulator.h @@ -21,9 +21,9 @@ #ifndef TRIANGULATOR_H #define TRIANGULATOR_H -#include "math_2d.h" #include "list.h" #include "set.h" +#include "vector2.h" //2D point structure |