diff options
author | Colin Okay <cbeok@protonmail.com> | 2020-08-12 17:42:05 -0500 |
---|---|---|
committer | Colin Okay <cbeok@protonmail.com> | 2020-08-12 17:42:05 -0500 |
commit | 556bea4e18dc96d7207692076e66775e8246dc82 (patch) | |
tree | 43cf658747c278598c7b304a959ae9fff627c3b3 /easing.lisp | |
parent | adf3fded3aa80adc2ae1d7fb9ab90ea3b157caf7 (diff) |
removed dependency on my stupid lettuce lib
Diffstat (limited to 'easing.lisp')
-rw-r--r-- | easing.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/easing.lisp b/easing.lisp index ef20a30..d63a4b1 100644 --- a/easing.lisp +++ b/easing.lisp @@ -6,7 +6,7 @@ (defun time-frac (start duration current) (let* ((end (+ start duration)) - (progress (max 0 (- end current)))) + (progress (max 0 (- end current)))) (- 1.0 (/ progress duration)))) (defmacro def-ease (name &rest body) |