mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 21:34:08 -07:00
12 lines
294 B
C++
Executable file
12 lines
294 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;
|
|
}
|