2012-06-14 13:06:06 +00:00
|
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
|
2012-09-23 22:09:57 +00:00
|
|
|
#include "Cuboid.h"
|
2012-06-14 13:06:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cCuboid::Sort()
|
|
|
|
|
{
|
2013-03-29 16:45:00 +00:00
|
|
|
if (p1.x > p2.x)
|
|
|
|
|
{
|
|
|
|
|
std::swap(p1.x, p2.x);
|
|
|
|
|
}
|
|
|
|
|
if (p1.y > p2.y)
|
|
|
|
|
{
|
|
|
|
|
std::swap(p1.y, p2.y);
|
|
|
|
|
}
|
|
|
|
|
if (p1.z > p2.z)
|
|
|
|
|
{
|
|
|
|
|
std::swap(p1.z, p2.z);
|
|
|
|
|
}
|
2012-06-14 13:06:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|