19 lines
436 B
C
19 lines
436 B
C
|
// gaussian blur
|
||
|
#define GAUSS_WIDTH 1
|
||
|
#define GAUSS_SIGMA 1.0
|
||
|
#define DECAY_FACTOR 0.9
|
||
|
// box blur
|
||
|
#define BLUR_KERNEL_SIZE 1
|
||
|
// agent params
|
||
|
#define NUM_AGENTS_MIN 64
|
||
|
#define NUM_AGENTS_MAX 301
|
||
|
#define AGENT_DROP_AMOUNT 10
|
||
|
#define AGENT_SENSOR_DISTANCE_MIN 2.0
|
||
|
#define AGENT_SENSOR_DISTANCE_MAX 3.5
|
||
|
// general params
|
||
|
#define NUM_ITERATIONS 500
|
||
|
#define SPAWN_MIN_X 2
|
||
|
#define SPAWN_MAX_X 63
|
||
|
#define SPAWN_MIN_Y 2
|
||
|
#define SPAWN_MAX_Y 31
|