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