summaryrefslogtreecommitdiffstats
path: root/src/aux.py
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-04-04 21:53:23 +0200
committerMattias Andrée <maandree@operamail.com>2014-04-04 21:53:23 +0200
commit7382112caf773c61202481f83e81ab013fb0b56c (patch)
tree6900e115b3a5da8367e4c535c081845b7615a224 /src/aux.py
parentupdate todo (diff)
downloadblueshift-7382112caf773c61202481f83e81ab013fb0b56c.tar.gz
blueshift-7382112caf773c61202481f83e81ab013fb0b56c.tar.bz2
blueshift-7382112caf773c61202481f83e81ab013fb0b56c.tar.xz
document interpolation and halo elimination1.15
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--src/aux.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/aux.py b/src/aux.py
index 70526e4..93f001f 100644
--- a/src/aux.py
+++ b/src/aux.py
@@ -49,7 +49,7 @@ def ramps_to_function(r, g, b):
return functionise((fp(r), fp(g), fp(b)))
-def linearly_interpolate_ramp(r, g, b): # TODO demo and document this
+def linearly_interpolate_ramp(r, g, b): # TODO demo this
'''
Linearly interpolate ramps to the size of the output axes
@@ -75,7 +75,7 @@ def linearly_interpolate_ramp(r, g, b): # TODO demo and document this
return (R, G, B)
-def cubicly_interpolate_ramp(r, g, b): # TODO demo and document this
+def cubicly_interpolate_ramp(r, g, b): # TODO demo this
'''
Interpolate ramps to the size of the output axes using cubic Hermite spline
@@ -173,7 +173,7 @@ def polynomially_interpolate_ramp(r, g, b): # TODO Speedup, demo and document th
return (R, G, B)
-def eliminate_halos(r, g, b, R, G, B): # TODO demo and document this
+def eliminate_halos(r, g, b, R, G, B): # TODO demo this
'''
Eliminate haloing effects in interpolations