mElite  1.0
An Elite clone based on TextElite by Jan-Philipp Kappmeier and Melanie Schmidt.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
GlobalGL.h
Go to the documentation of this file.
1 
6 #ifndef GLOBAL_H_
7 #define GLOBAL_H_
8 
9 // basic includes for the work with OpenGL
10 #include <windows.h> // Windows header. Needs to be included before glut, otherwise we get errors due to wrong definitions
11 #include <GL/glut.h>
12 #include <stdio.h> // input/output
13 #define _USE_MATH_DEFINES // activate mathmatic constants (pi, ...)
14 #include <math.h>// mathmatic functions
15 #include <cmath> // c++ header for c-style math functions
16 static const float ANGLE2DEG = M_PI/180.0;
17 #include <stdarg.h> // header for variable argument routines
18 
19 #endif // GLOBAL_H