diff options
Diffstat (limited to 'constants.py')
| -rw-r--r-- | constants.py | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/constants.py b/constants.py index e19c127..1685c5a 100644 --- a/constants.py +++ b/constants.py @@ -1,10 +1,22 @@ """Constants that may be tweaked in the future.""" from __future__ import division, unicode_literals -FRAME_RATE = 10 #44 +FRAME_RATE = 22 MIN_VALUE = 0 MAX_VALUE = 1 -MAX_TIME = 4 -MIN_TIME = 0.3 -MAX_HUE = 169 / 360 -MIN_HUE = 250 / 360 +MAX_TIME = 2 +MIN_TIME = 0.1 +MIN_HUE = 207 / 360 +MAX_HUE = 250 / 360 +MAX_SATURATION = 1 +MIN_SATURATION = 0.5 +MIN_VALUE = 0.3 +MAX_VALUE = 1 + +# shallow +MIN_HUE = 169 / 360 +MAX_HUE = 250 / 360 +MAX_SATURATION = 1 +MIN_SATURATION = 0.5 +MIN_VALUE = 0.3 +MAX_VALUE = 1 |
