2012-06-14 06:06:06 -07:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2012-09-23 15:09:57 -07:00
|
|
|
#include "Cuboid.h"
|
2012-06-14 06:06:06 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cCuboid::Sort()
|
|
|
|
{
|
2013-03-29 09:45:00 -07: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 06:06:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|