| 123456789101112131415161718192021222324 |
- #ifndef PARTICLE_CONFIG
- #define PARTICLE_CONFIG
- #include <stddef.h>
- struct Config
- {
- int map_width{};
- int map_height{};
- size_t population{};
- float increase{};
- float decay{};
- float diffusion{};
- float speed{};
- float steering{};
- float sensing_distance{};
- float sensing_angle{};
- };
- #endif // PARTICLE_CONFIG
|