aboutsummaryrefslogtreecommitdiffstats
path: root/src/math/Rect.h
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-09-14 20:48:49 +0300
committerSergeanur <s.anureev@yandex.ua>2020-09-14 21:07:31 +0300
commit38ec1bd50de234faf476daa15ea41778a860ca0b (patch)
treefedfb6fcbdd34f2dd576e6e6b1e6b2a76871b5a1 /src/math/Rect.h
parent93d77f340df1305fd8a802034b878f69f2cb1285 (diff)
Move a bunch of math to cpp files + small fixes
Diffstat (limited to 'src/math/Rect.h')
-rw-r--r--src/math/Rect.h14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/math/Rect.h b/src/math/Rect.h
index 326bb479..fa8d8de4 100644
--- a/src/math/Rect.h
+++ b/src/math/Rect.h
@@ -8,18 +8,8 @@ public:
float right; // x max
float top; // y min
- CRect(void){
- left = 1000000.0f;
- top = 1000000.0f;
- right = -1000000.0f;
- bottom = -1000000.0f;
- }
- CRect(float l, float t, float r, float b){
- left = l;
- top = t;
- right = r;
- bottom = b;
- }
+ CRect(void);
+ CRect(float l, float t, float r, float b);
void ContainPoint(CVector const &v){
if(v.x < left) left = v.x;
if(v.x > right) right = v.x;