diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-04-06 15:50:39 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-04-06 15:50:39 +0200 |
commit | a67981e6d56756782899af2a407aa34c150ecbd2 (patch) | |
tree | 8804e3b983785e66f09796f59e4d8beb7c9d8085 | |
parent | add monotone cubic interpolation (diff) | |
download | blueshift-a67981e6d56756782899af2a407aa34c150ecbd2.tar.gz blueshift-a67981e6d56756782899af2a407aa34c150ecbd2.tar.bz2 blueshift-a67981e6d56756782899af2a407aa34c150ecbd2.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | src/interpolation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interpolation.py b/src/interpolation.py index 6c2bce1..9fd98f1 100644 --- a/src/interpolation.py +++ b/src/interpolation.py @@ -101,7 +101,7 @@ def cubicly_interpolate_ramp(r, g, b, tension = 0): return (R, G, B) -def monotonic_cubicly_interpolate_ramp(r, g, b, tension = 0): +def monotonicly_cubicly_interpolate_ramp(r, g, b, tension = 0): ''' Interpolate ramps to the size of the output axes using monotone cubic Hermite spline and the Fritsch–Carlson method |