1 #ifndef PARAMS_H
2 #define PARAMS_H
3 
4 /* User configurable settings. */
5 
6 #define ZOOM_FACTOR      1.1
7 #define MOVE_OFFSET      20.0
8 #define BIG_ROTATION     (PI / 2.0)     /* 90 deg */
9 #define SMALL_ROTATION   (PI / 1800.0)  /* 0.1 deg */
10 #define MIPMAP_RATIO     0.75
11 
12 /* Font for the help box. */
13 #define FONT "Mono 10"
14 
15 #endif
16