diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2024-10-29 20:15:53 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2024-10-29 20:15:53 -0400 |
| commit | 9b718d4dc1bd21687a6a036cf0168fd7a73f8197 (patch) | |
| tree | 528cadda678992a47bb58f7b4f0cbc27b16fc15f | |
| parent | cab4376cc78dd9ffb13a7965cf2615ba1648c8f1 (diff) | |
| download | balls-9b718d4dc1bd21687a6a036cf0168fd7a73f8197.zip | |
increase circle points
| -rw-r--r-- | balls.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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} }; |