summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2024-11-02 22:08:33 -0400
committerSam Anthony <sam@samanthony.xyz>2024-11-02 22:08:33 -0400
commit76d858135743fc5737315aaaae37caaa7f8a5969 (patch)
tree3b7c14784bd91cf8fc1571a09abf96e8604f92d3
parentba4234f39d3bc25e62464d21380ecb2bf6b603a3 (diff)
downloadballs-76d858135743fc5737315aaaae37caaa7f8a5969.zip
increase max radius and initial velocity
-rw-r--r--balls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/balls.c b/balls.c
index c8e08c7..9097bed 100644
--- a/balls.c
+++ b/balls.c
@@ -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,