Range2D and Range3D

This commit is contained in:
Sergeanur 2020-06-03 04:45:25 +03:00
commit 2df44208dd
4 changed files with 67 additions and 0 deletions

11
src/core/Range3D.h Normal file
View file

@ -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();
};