Range2D and Range3D
This commit is contained in:
11
src/core/Range3D.h
Normal file
11
src/core/Range3D.h
Normal 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();
|
||||
};
|
||||
Reference in New Issue
Block a user