From 78ae9bf9237648c21fa9db18475a057c84edbdf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Thu, 19 Nov 2020 14:03:14 +0100 Subject: clearer lerp-docstring --- algorithms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/algorithms.py b/algorithms.py index 707d55d..d0c79e3 100644 --- a/algorithms.py +++ b/algorithms.py @@ -27,7 +27,7 @@ def chunks(lst, n): def lerp_color(start_color, end_color, t): - """ Lerp between two colors by a factor t. + """ Linearly interpolate between two colors by a factor t. Colors are assumed to be in the form "#RRGGBB" """ -- cgit v1.2.1