summaryrefslogtreecommitdiffstats
path: root/src/core/Range2D.cpp
blob: 33eafd0e40e8574a2fc5886a6b7380e6dd35cb57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include "common.h"
#include "Range2D.h"
#include "General.h"

CRange2D::CRange2D(CVector2D _min, CVector2D _max) : min(_min), max(_max) {}

bool
CRange2D::IsInRange(CVector2D vec)
{
	return min.x < vec.x && max.x > vec.x && min.y < vec.y && max.y > vec.y;
}

void
CRange2D::DebugShowRange(float, int)
{
}

CVector2D
CRange2D::GetRandomPointInRange()
{
	int distX = Abs(max.x - min.x);
	int distY = Abs(max.y - min.y);

	float outX = CGeneral::GetRandomNumber() % distX + min.x;
	float outY = CGeneral::GetRandomNumber() % distY + min.y;

	return CVector2D(outX, outY);
}