summaryrefslogtreecommitdiffstats
path: root/src/core/Range3D.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/Range3D.cpp')
-rw-r--r--src/core/Range3D.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/core/Range3D.cpp b/src/core/Range3D.cpp
new file mode 100644
index 00000000..14d2dbd2
--- /dev/null
+++ b/src/core/Range3D.cpp
@@ -0,0 +1,23 @@
+#include "common.h"
+#include "Range3D.h"
+#include "General.h"
+
+CRange3D::CRange3D(CVector _min, CVector _max) : min(_min), max(_max) {}
+
+bool
+CRange3D::IsInRange(CVector vec)
+{
+ return min.x < vec.x && max.x > vec.x && min.y < vec.y && max.y > vec.y && min.z < vec.z && max.z > vec.z;
+}
+
+void
+CRange3D::DebugShowRange(float, int)
+{
+}
+
+CVector
+CRange3D::GetRandomPointInRange()
+{
+ return CVector(CGeneral::GetRandomNumberInRange(min.x, max.x), CGeneral::GetRandomNumberInRange(min.y, max.y),
+ CGeneral::GetRandomNumberInRange(min.z, max.z));
+}