summaryrefslogtreecommitdiffstats
path: root/src/math/Rect.cpp
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-09-14 19:48:49 +0200
committerSergeanur <s.anureev@yandex.ua>2020-09-14 20:07:31 +0200
commit38ec1bd50de234faf476daa15ea41778a860ca0b (patch)
treefedfb6fcbdd34f2dd576e6e6b1e6b2a76871b5a1 /src/math/Rect.cpp
parentFixes from miami (diff)
downloadre3-38ec1bd50de234faf476daa15ea41778a860ca0b.tar
re3-38ec1bd50de234faf476daa15ea41778a860ca0b.tar.gz
re3-38ec1bd50de234faf476daa15ea41778a860ca0b.tar.bz2
re3-38ec1bd50de234faf476daa15ea41778a860ca0b.tar.lz
re3-38ec1bd50de234faf476daa15ea41778a860ca0b.tar.xz
re3-38ec1bd50de234faf476daa15ea41778a860ca0b.tar.zst
re3-38ec1bd50de234faf476daa15ea41778a860ca0b.zip
Diffstat (limited to '')
-rw-r--r--src/math/Rect.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/math/Rect.cpp b/src/math/Rect.cpp
new file mode 100644
index 00000000..de6320ad
--- /dev/null
+++ b/src/math/Rect.cpp
@@ -0,0 +1,17 @@
+#include "common.h"
+
+CRect::CRect(void)
+{
+ left = 1000000.0f;
+ top = 1000000.0f;
+ right = -1000000.0f;
+ bottom = -1000000.0f;
+}
+
+CRect::CRect(float l, float t, float r, float b)
+{
+ left = l;
+ top = t;
+ right = r;
+ bottom = b;
+} \ No newline at end of file