blob: 1347faa1f78adf9431c756c752a014f55ac9f17c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef CONFIG_H
# define CONFIG_H
// # define LINE_COLOR 0x151515ff
// # define LINE_COLOR 0xb71c1cff
# define LINE_COLOR 0x280000ff
# define POINTS_STEP 1.0
# define FACTOR_STEP 0.01
# define POINTS_DEFAULT 300
# define FACTOR_DEFAULT 2.0
# define WINDOW_WIDTH 640
# define WINDOW_HEIGHT 480
#endif
|