diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-09-14 19:48:49 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-09-14 20:10:23 +0200 |
commit | a8a28c151273e5d1a33707b61304e27762eb6378 (patch) | |
tree | f6b62a86f7d4496ee405279092fe029545694748 /src/math/Rect.h | |
parent | Merge pull request #702 from Sergeanur/VC/MusicManager (diff) | |
download | re3-a8a28c151273e5d1a33707b61304e27762eb6378.tar re3-a8a28c151273e5d1a33707b61304e27762eb6378.tar.gz re3-a8a28c151273e5d1a33707b61304e27762eb6378.tar.bz2 re3-a8a28c151273e5d1a33707b61304e27762eb6378.tar.lz re3-a8a28c151273e5d1a33707b61304e27762eb6378.tar.xz re3-a8a28c151273e5d1a33707b61304e27762eb6378.tar.zst re3-a8a28c151273e5d1a33707b61304e27762eb6378.zip |
Diffstat (limited to 'src/math/Rect.h')
-rw-r--r-- | src/math/Rect.h | 14 |
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; |