summaryrefslogtreecommitdiffstats
path: root/src/__main__.py
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-02-16 23:23:29 +0100
committerMattias Andrée <maandree@operamail.com>2014-02-16 23:23:29 +0100
commit7695e738a943dd37f403b2327cd7b06c7202dea6 (patch)
tree4cccde223957d74fc88f727f84c442d4833521de /src/__main__.py
parentmake more parameters optional (diff)
downloadblueshift-7695e738a943dd37f403b2327cd7b06c7202dea6.tar.gz
blueshift-7695e738a943dd37f403b2327cd7b06c7202dea6.tar.bz2
blueshift-7695e738a943dd37f403b2327cd7b06c7202dea6.tar.xz
colour tempurature does not work correctly, otherwise all curves work
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/__main__.py')
-rwxr-xr-xsrc/__main__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/__main__.py b/src/__main__.py
index 8fd4235..083d0b0 100755
--- a/src/__main__.py
+++ b/src/__main__.py
@@ -42,10 +42,10 @@ def periodically(year, month, day, hour, minute, second, weekday, fade):
fadeout_steps = 100
if fade is None:
negative(False, False, False)
- temperature(6500, lambda T : divide_by_maximum(series_d(T)), True)
- temperature(6500, lambda T : clip_whitepoint(simple_whitepoint(T)), True)
- temperature(6500, cmf_2deg, True)
- temperature(6500, cmf_10deg, True)
+ temperature(6500, lambda T : divide_by_maximum(series_d(T)))
+ temperature(6500, lambda T : clip_whitepoint(simple_whitepoint(T)))
+ temperature(6500, cmf_2deg)
+ temperature(6500, cmf_10deg)
rgb_contrast(1.0, 1.0, 1.0)
cie_contrast(1.0)
rgb_brightness(1.0, 1.0, 1.0)