diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-02-16 23:23:29 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-02-16 23:23:29 +0100 |
commit | 7695e738a943dd37f403b2327cd7b06c7202dea6 (patch) | |
tree | 4cccde223957d74fc88f727f84c442d4833521de /src/__main__.py | |
parent | make more parameters optional (diff) | |
download | blueshift-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-x | src/__main__.py | 8 |
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) |