/*
 * STRUCT: SE_CMYK_DATA
 *
 *   Used for Cyan Magenta Yellow Black color model's data
 *
 *   cyan    = 0.0 fully off, cyan    = 1.0 fully on
 *   magenta = 0.0 fully off, magenta = 1.0 fully on
 *   yellow  = 0.0 fully off, yellow  = 1.0 fully on
 *   black   = 0.0 fully off, black   = 1.0 fully on
 *
 *   CMYK SUPPORT NOTE:  Support for the CMYK (Cyan Magenta Yellow blacK)
 *     color model is provided as a convenience, but it is provided in
 *     separate functions, the SE_CMYtoCMYK() and SE_CMYKtoCMY() functions.
 *     Thus, the SE_CMYK_DATA structure is not included in the general
 *     SE_COLOR_DATA structure.
 */
typedef struct
{
SE_FLOAT64 cyan;
SE_FLOAT64 magenta;
SE_FLOAT64 yellow;
SE_FLOAT64 black;
} SE_CMYK_DATA;
Prev: SE_CMY_DATA. Next: SE_COLOR_DATA. Up:Index