diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2024-10-02 11:44:15 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2024-10-02 11:44:15 -0400 |
| commit | 5c89b3615c067c51e0076f5433ccbdbee5022f70 (patch) | |
| tree | 8dbcc06c32aefe2cbdba572138fa181e03149be7 /balls.cpp | |
| parent | 49751d69498c265cb46f6cce5033367ae39c5e91 (diff) | |
| download | balls-5c89b3615c067c51e0076f5433ccbdbee5022f70.zip | |
refactor
Diffstat (limited to 'balls.cpp')
| -rw-r--r-- | balls.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
@@ -116,19 +116,3 @@ animate(int v) { display(); glutTimerFunc(FRAME_TIME_MS, animate, 0); } - -Point -ptAddVec(Point p, Vector v) { - p.x += v.x; - p.y += v.y; - return p; -} - -Rectangle -insetRect(Rectangle r, double n) { - r.min.x += n; - r.min.y += n; - r.max.x -= n; - r.max.y -= n; - return r; -} |