/*
 * STRUCT: SE_HSV_DATA
 *
 *   Used for Hue Saturation Value color model's data
 *
 *   hue - angle in degrees about the HSV hexcone
 *           0 degrees = red
 *         120 degrees = green
 *         240 degrees = blue
 *         (expected values are between 0.0 and 360.0)
 *         (  0.0 is included                        )
 *         (360.0 will automatically be reduced to   )
 *         (  0.0 by the functions in this API       )
 *
 *   saturation -  from 0.0 to 1.0 (0 percent to 100 percent)
 *
 *   value - from 0.0 to 1.0 (sometimes called brightness)
 */
typedef struct
{
SE_FLOAT64 hue;
SE_FLOAT64 saturation;
SE_FLOAT64 value;
} SE_HSV_DATA;
Prev: SE_HORIZONTAL_DATUM_ENUM. Next: SRM_LCC_2D_COORD. Up:Index