2000-09-25 17:43:52 +02:00
|
|
|
/*************/
|
|
|
|
/*** Utils ***/
|
|
|
|
/*************/
|
|
|
|
|
|
|
|
#ifndef __UTILS_HEADER__
|
|
|
|
#define __UTILS_HEADER__
|
|
|
|
|
2000-10-27 02:06:19 +02:00
|
|
|
#include "maths.h"
|
|
|
|
|
2000-09-25 17:43:52 +02:00
|
|
|
|
|
|
|
/**************************************************************************************/
|
|
|
|
void DbgMsg(const char * pszFmt,...);
|
2000-10-27 20:18:30 +02:00
|
|
|
|
2000-09-25 17:43:52 +02:00
|
|
|
void BuildGLBox(float XMin,float XMax,float YMin,float YMax,float ZMin,float ZMax);
|
|
|
|
void BuildGLBoxNoNormals(float XMin,float XMax,float YMin,float YMax,float ZMin,float ZMax);
|
2000-10-25 23:00:54 +02:00
|
|
|
void BuildGLQuad(float XMin,float XMax,float YMin,float YMax,float Z);
|
2000-10-27 20:18:30 +02:00
|
|
|
int LoadGLTexture(char *FileName, GLuint &Text);
|
2000-09-25 17:43:52 +02:00
|
|
|
|
2000-10-27 02:06:19 +02:00
|
|
|
void TNormalise(TVECTOR &V);
|
|
|
|
TVECTOR TCrossProduct(TVECTOR const &V0,TVECTOR const &V1,const TVECTOR &V2 );
|
|
|
|
|
2000-09-25 17:43:52 +02:00
|
|
|
/**************************************************************************************/
|
|
|
|
|
|
|
|
#endif
|