diff options
author | David Thompson <dthompson2@worcester.edu> | 2014-11-30 17:57:57 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2014-11-30 17:57:57 -0500 |
commit | 5fd693957d637fc1c38d109109b6587b3453b984 (patch) | |
tree | 498846c85d83142be83238d9874ccda2a12ac190 | |
parent | 6df77db1f65ba4f844a378c512634828b12d78a8 (diff) |
math: tween: Replace let* with let in ease-reflect.
* sly/math/tween.scm (ease-reflect): Use let instead of let*.
-rw-r--r-- | sly/math/tween.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sly/math/tween.scm b/sly/math/tween.scm index 147ca37..46c1384 100644 --- a/sly/math/tween.scm +++ b/sly/math/tween.scm @@ -36,7 +36,7 @@ (modulo* alpha 1)) (define (ease-reflect alpha) - (let* ((cycle (modulo* alpha 2))) + (let ((cycle (modulo* alpha 2))) (if (< cycle 1) cycle (- 2 cycle)))) (define (ease-linear alpha) |