00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #include <iostream>
00014 #include <cmath>
00015 #include <vector>
00016
00017 #include <string>
00018 #include <fstream>
00019 #include <ostream>
00020 #include <sstream>
00021
00022 #include <GL/glut.h>
00023 #include <GL/glu.h>
00024 #include <GL/gl.h>
00025
00026 #include <IL/il.h>
00027 #include <IL/ilu.h>
00028 #include <IL/ilut.h>
00029
00030 using namespace std;
00031
00032 #define PI 3.14159265
00033
00034 #ifndef _HELPFUNC_
00035 #define _HELPFUNC_
00036
00037
00038 template <typename T>
00039 void printArray( T * array, int length, const char *arrayName ){
00040 for( int i = 0; i < length; i++ ){
00041 cout << "[" << i << "] " << array[i] << endl;
00042 }
00043 }
00044
00045
00046
00047 template <typename T>
00048 string _toString( T data ){
00049 string str;
00050 stringstream ss;
00051 ss << data;
00052 return ss.str();
00053 }
00054
00055 #endif