This commit is contained in:
Daveo 2000-10-27 00:06:19 +00:00
parent ee30817b75
commit 3d8fc3912c
10 changed files with 231 additions and 13 deletions

View file

@ -5,6 +5,8 @@
#ifndef __UTILS_HEADER__
#define __UTILS_HEADER__
#include "maths.h"
/**************************************************************************************/
void DbgMsg(const char * pszFmt,...);
@ -12,6 +14,9 @@ void BuildGLBox(float XMin,float XMax,float YMin,float YMax,float ZMin,float ZMa
void BuildGLBoxNoNormals(float XMin,float XMax,float YMin,float YMax,float ZMin,float ZMax);
void BuildGLQuad(float XMin,float XMax,float YMin,float YMax,float Z);
void TNormalise(TVECTOR &V);
TVECTOR TCrossProduct(TVECTOR const &V0,TVECTOR const &V1,const TVECTOR &V2 );
/**************************************************************************************/
#endif