Engauge Digitizer 2
Loading...
Searching...
No Matches
ColorConstants.h
1/******************************************************************************************************
2 * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released *
3 * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file *
4 * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. *
5 ******************************************************************************************************/
6
7#ifndef CURVE_CONSTANTS_H
8#define CURVE_CONSTANTS_H
9
11const int INTENSITY_MIN = 0;
12const int INTENSITY_MAX = 100;
13const int INTENSITY_LOW_DEFAULT = 0;
14const int INTENSITY_HIGH_DEFAULT = 50;
15const int FOREGROUND_MIN = 0;
16const int FOREGROUND_MAX = 100;
17const int FOREGROUND_LOW_DEFAULT = 0;
18const int FOREGROUND_HIGH_DEFAULT = 10;
19const int HUE_MIN = 0;
20const int HUE_MAX = 360;
21const int HUE_LOW_DEFAULT = 180;
22const int HUE_HIGH_DEFAULT = 360;
23const int SATURATION_MIN = 0;
24const int SATURATION_MAX = 100;
25const int SATURATION_LOW_DEFAULT = 50;
26const int SATURATION_HIGH_DEFAULT = 100;
27const int VALUE_MIN = 0;
28const int VALUE_MAX = 100;
29const int VALUE_LOW_DEFAULT = 0;
30const int VALUE_HIGH_DEFAULT = 50;
31
32#endif // CURVE_CONSTANTS_H