diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2024-11-02 22:08:33 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2024-11-02 22:08:33 -0400 |
| commit | 76d858135743fc5737315aaaae37caaa7f8a5969 (patch) | |
| tree | 3b7c14784bd91cf8fc1571a09abf96e8604f92d3 /balls.c | |
| parent | ba4234f39d3bc25e62464d21380ecb2bf6b603a3 (diff) | |
| download | balls-76d858135743fc5737315aaaae37caaa7f8a5969.zip | |
increase max radius and initial velocity
Diffstat (limited to 'balls.c')
| -rw-r--r-- | balls.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -25,8 +25,8 @@ #define FRAGMENT_SHADER "balls.frag" #define RMIN 0.05 /* Minimum radius. */ -#define RMAX 0.10 /* Maximum radius. */ -#define VMAX_INIT 1.5 /* Maximum initial velocity. */ +#define RMAX 0.15 /* Maximum radius. */ +#define VMAX_INIT 5.0 /* Maximum initial velocity. */ enum { WIDTH = 640, |