2012-06-14 09:06:06 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Vector3i.h"
|
|
|
|
#include "Vector3d.h"
|
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
class cCuboid // tolua_export
|
|
|
|
{ // tolua_export
|
|
|
|
public: // tolua_export
|
|
|
|
cCuboid() {} // tolua_export
|
|
|
|
cCuboid( const cCuboid & a_Cuboid ) : p1( a_Cuboid.p1 ), p2( a_Cuboid.p2 ) {} // tolua_export
|
|
|
|
cCuboid( const Vector3i & a_p1, const Vector3i & a_p2 ) : p1( a_p1 ), p2( a_p2 ) {} // tolua_export
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
Vector3i p1, p2; // tolua_export
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
void Sort(); // tolua_export
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
bool IsInside( const Vector3i & v ) const // tolua_export
|
|
|
|
{ // tolua_export
|
2012-06-14 09:06:06 -04:00
|
|
|
if( v.x >= p1.x && v.x <= p2.x
|
|
|
|
&& v.y >= p1.y && v.y <= p2.y
|
|
|
|
&& v.z >= p1.z && v.z <= p2.z )
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2013-01-11 23:46:01 -05:00
|
|
|
} // tolua_export
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
bool IsInside( const Vector3d & v ) const // tolua_export
|
|
|
|
{ // tolua_export
|
2012-06-14 09:06:06 -04:00
|
|
|
if( v.x >= p1.x && v.x <= p2.x
|
|
|
|
&& v.y >= p1.y && v.y <= p2.y
|
|
|
|
&& v.z >= p1.z && v.z <= p2.z )
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2013-01-11 23:46:01 -05:00
|
|
|
} // tolua_export
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
}; // tolua_export
|