-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.h
59 lines (40 loc) · 1.44 KB
/
global.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*****************************************************************
* g l o b a l . h *
* Constants and global vars *
* *
* started 6/15/98, Karl Kosack ([email protected]) *
*****************************************************************/
#ifndef __GLOBAL_H__
#define __GLOBAL_H__
/////////////////////////////////////////////////////////////////////////
// CONSTANTS:
#define VERSION 0.99 // Version
extern bool DEBUG;
extern bool GRAPHICS;
extern double PI; // PI constant defined in xraysim.cpp
typedef unsigned char Byte;
typedef int Voxel;
#define EMPTY_VOXEL -1
#ifndef USE_OPENGL
#define USE_OPENGL
#endif
#define debug if(DEBUG) cout << "DEBUG: "
#define MATRIX_MODES 2 // number of matrix modes
#define MAXGRAINS 255 // max number of grains
#define TOLER 1e-5 // intersect tolerance
#define INFINITY 1.0e8 // really big number
#define MAX_MILLER_INDEX 5 // miller indices to compute G's for
#define RADTODEG 180.0/PI // angle conversion
#define DEGTORAD PI/180.0 // angle conversion
enum matrix_modes { // list of matrix modes
MODEL_MATRIX_MODE=0,
VIEW_MATRIX_MODE=1
};
enum axes {
X = 0,
Y = 1,
Z = 2,
W = 3
};
enum GrainType { SC, FCC, BCC };
#endif //__GLOBAL_H__