summaryrefslogtreecommitdiffstats
path: root/core/math
diff options
context:
space:
mode:
authortoger5 <toger5@hotmail.de>2017-06-10 11:44:35 -0700
committertoger5 <toger5@hotmail.de>2017-08-15 19:36:34 +0200
commitc39ac8650daa2a9a8c26f56247e555472ec576d7 (patch)
treea23e7ac898920bfda3c22a77f9f0e7fcc23785ef /core/math
parent059a0496dab1b7dd7acd54095fdfc7349e96e7d2 (diff)
downloadredot-engine-c39ac8650daa2a9a8c26f56247e555472ec576d7.tar.gz
Added Corner Enum
Diffstat (limited to 'core/math')
-rw-r--r--core/math/math_2d.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/math/math_2d.h b/core/math/math_2d.h
index b679371e03..601ab91b9f 100644
--- a/core/math/math_2d.h
+++ b/core/math/math_2d.h
@@ -43,6 +43,14 @@ enum Margin {
MARGIN_BOTTOM
};
+enum Corner {
+
+ CORNER_TOP_LEFT,
+ CORNER_TOP_RIGHT,
+ CORNER_BOTTOM_RIGHT,
+ CORNER_BOTTOM_LEFT
+};
+
enum Orientation {
HORIZONTAL,