summaryrefslogtreecommitdiffstats
path: root/src/core/Range3D.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/Range3D.h')
-rw-r--r--src/core/Range3D.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/core/Range3D.h b/src/core/Range3D.h
new file mode 100644
index 00000000..f42b523b
--- /dev/null
+++ b/src/core/Range3D.h
@@ -0,0 +1,11 @@
+#pragma once
+
+class CRange3D
+{
+ CVector min, max;
+public:
+ CRange3D(CVector _min, CVector _max);
+ bool IsInRange(CVector vec);
+ void DebugShowRange(float, int);
+ CVector GetRandomPointInRange();
+}; \ No newline at end of file