comparison visuality.h @ 0:76568becd6d6

Rhope Alpha 2a source import
author Mike Pavone <pavone@retrodev.com>
date Tue, 28 Apr 2009 23:06:07 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:76568becd6d6
1 #ifndef _VISUALITY_H_
2 #define _VISUALITY_H_
3
4 #ifdef WIN32
5 #include <windows.h>
6 #include <Windowsx.h>
7
8 //#include <gl\gl.h>
9 //#include <gl\glu.h>
10 //#include <gl\glaux.h>
11
12 #endif
13
14 #define CIRCLE_STEP 0.05
15 #define INPUT_SIZE 0.20
16 #define OUTPUT_SIZE INPUT_SIZE
17
18 #define TEXT_RED 0.0
19 #define TEXT_BLUE 0.0
20 #define TEXT_GREEN 0.0
21
22 #define BODY_RED 1.0
23 #define BODY_BLUE 1.0
24 #define BODY_GREEN 1.0
25
26 #define SELECT_RED 0.7
27 #define SELECT_BLUE 0.7
28 #define SELECT_GREEN 0.7
29
30 #define INPUT_RED 0.0
31 #define INPUT_BLUE 0.0
32 #define INPUT_GREEN 1.0
33
34 #define OUTPUT_RED 1.0
35 #define OUTPUT_BLUE 0.0
36 #define OUTPUT_GREEN 0.0
37
38 #define WIRE_RED 1.0
39 #define WIRE_BLUE 1.0
40 #define WIRE_GREEN 1.0
41
42
43
44
45
46 #endif //_VISUALITY_H_
47