aboutsummaryrefslogtreecommitdiffstats
path: root/src/math/Rect.h
diff options
context:
space:
mode:
authorFire-Head <Fire-Head@users.noreply.github.com>2020-12-07 21:12:13 +0300
committerFire-Head <Fire-Head@users.noreply.github.com>2020-12-07 21:12:13 +0300
commitc5fbb594a51f37e5a3af6c6b98342a71c8fe4611 (patch)
tree50a9a7cf3f5ff72d905eac13dfa68b6151caed3f /src/math/Rect.h
parent0fbf6246238129a90f63a1cc38725dbff80b5eab (diff)
ps2 hud, restore original code
Diffstat (limited to 'src/math/Rect.h')
-rw-r--r--src/math/Rect.h19
1 files changed, 18 insertions, 1 deletions
diff --git a/src/math/Rect.h b/src/math/Rect.h
index fa8d8de4..e9b25896 100644
--- a/src/math/Rect.h
+++ b/src/math/Rect.h
@@ -42,13 +42,30 @@ public:
bottom += y;
top += y;
}
- void Grow(float r){
+
+ void Grow(float r) {
left -= r;
right += r;
top -= r;
bottom += r;
}
+ void Grow(float l, float r)
+ {
+ left -= l;
+ top -= l;
+ right += r;
+ bottom += r;
+ }
+
+ void Grow(float l, float r, float t, float b)
+ {
+ left -= l;
+ top -= t;
+ right += r;
+ bottom += b;
+ }
+
float GetWidth(void) { return right - left; }
float GetHeight(void) { return bottom - top; }
};