summaryrefslogtreecommitdiffstats
path: root/balls.c
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2024-10-29 20:15:53 -0400
committerSam Anthony <sam@samanthony.xyz>2024-10-29 20:15:53 -0400
commit9b718d4dc1bd21687a6a036cf0168fd7a73f8197 (patch)
tree528cadda678992a47bb58f7b4f0cbc27b16fc15f /balls.c
parentcab4376cc78dd9ffb13a7965cf2615ba1648c8f1 (diff)
downloadballs-9b718d4dc1bd21687a6a036cf0168fd7a73f8197.zip
increase circle points
Diffstat (limited to 'balls.c')
-rw-r--r--balls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/balls.c b/balls.c
index 48fc430..bf81517 100644
--- a/balls.c
+++ b/balls.c
@@ -27,7 +27,7 @@ enum { WIDTH = 640, HEIGHT = 480 };
enum { KEY_QUIT = 'q' };
enum {
NBALLS = 8,
- CIRCLE_POINTS = 16+2, /* +2 for center point and last point which overlaps with first point. */
+ CIRCLE_POINTS = 32+2, /* +2 for center point and last point which overlaps with first point. */
};
const Rectangle bounds = { {-1.0, -1.0}, {1.0, 1.0} };