mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-06-22 18:06:14 +00:00
79b92f8a16
This was SVN commit r2388.
13 lines
282 B
C++
13 lines
282 B
C++
#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;
|
|
}
|