From d08483a437bc44ddc7b65b140c9f173815e13a0f Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Sat, 2 Nov 2024 21:21:30 -0400 Subject: decrease number of vertices --- balls.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/balls.c b/balls.c index f43dbb9..c66a362 100644 --- a/balls.c +++ b/balls.c @@ -38,9 +38,7 @@ enum { }; enum { KEY_QUIT = 'q' }; enum { NBALLS_DEFAULT = 3 }; -enum { - CIRCLE_POINTS = 32+2, /* +2 for center point and last point which overlaps with first point. */ -}; +enum { CIRCLE_POINTS = 24 }; /* Number of vertices per circle. */ const Rect bounds = { {-1.0, -1.0}, {1.0, 1.0} }; -- cgit v1.2.3