0ad/source/tools/pmdexp/ExpUtil.cpp
janwas 1eaadd38aa ran everything though mark's newline stomper.
This was SVN commit r322.
2004-05-30 00:46:58 +00:00

12 lines
282 B
C++
Executable file

#include "MaxInc.h"
#include "ExpUtil.h"
//////////////////////////////////////////////////////////////////////
// MAXtoGL: convert point from MAX's coordinate system to that used
// within the engine
void MAXtoGL(Point3 &pnt)
{
float tmp = pnt.y;
pnt.y = pnt.z;
pnt.z = tmp;
}