summaryrefslogtreecommitdiffstats
path: root/src/core/Range3D.h
blob: f42b523bee09b50d93dfd7556caf88800f1d527d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

class CRange3D
{
	CVector min, max;
public:
	CRange3D(CVector _min, CVector _max);
	bool IsInRange(CVector vec);
	void DebugShowRange(float, int);
	CVector GetRandomPointInRange();
};