diff options
Diffstat (limited to 'rand.c')
| -rw-r--r-- | rand.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ randFloat(float lo, float hi) { } Vector -randPtInRect(Rectangle r) { +randPtInRect(Rect r) { Vector pt = { randFloat(r.min.x, r.max.x), randFloat(r.min.y, r.max.y) |