From 9b718d4dc1bd21687a6a036cf0168fd7a73f8197 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Tue, 29 Oct 2024 20:15:53 -0400 Subject: increase circle points --- balls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'balls.c') 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} }; -- cgit v1.2.3