diff options
author | David Thompson <dthompson2@worcester.edu> | 2018-10-02 08:46:01 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2018-10-02 08:46:01 -0400 |
commit | 07f19c236da48c5c57105ebeb8ab9e733d93168d (patch) | |
tree | fe789e2a91e21ad159fc71ed72559d0fc82291a1 | |
parent | 8f21fe168533229671afc252b75ea983bd0095d9 (diff) |
math: grid: Fix docstring in grid-move.
-rw-r--r-- | chickadee/math/grid.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chickadee/math/grid.scm b/chickadee/math/grid.scm index 0361333..d131921 100644 --- a/chickadee/math/grid.scm +++ b/chickadee/math/grid.scm @@ -381,7 +381,7 @@ so, resolve them using HANDLER." (define (grid-move grid item position filter) "Attempt to move ITEM in GRID to POSITION (a 2D vector) and check -for collisions. For each collision, HANDLER will be called with two +for collisions. For each collision, FILTER will be called with two arguments: ITEM and the item it collided with. If a collision occurs, POSITION may be modified to resolve the colliding objects." (grid-resolve-collisions grid item position filter) |