diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-08-14 18:58:32 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-14 18:58:32 -0300 |
commit | 4e55835e480b693e852571899eaa1b48bd52e026 (patch) | |
tree | 42fc7593ce333531f112c6e6f567f7b49095e56b /thirdparty | |
parent | d6058b967d295d20e3ce93de9263d48002971693 (diff) | |
parent | cf136a91d60509a99f9ba47c7dbc6fbb9cb6240d (diff) |
Merge pull request #18096 from aaronfranke/master
[Core] Split up math_2d.h
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 |