7#ifndef CURVE_CONSTANTS_H
8#define CURVE_CONSTANTS_H
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;
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;