DK11 for Java | tatukgis.jdk.TGIS_Color.FromCMYK | Fields | Methods | Properties
Creates a color using the CMYK color model.
// Java public static TGIS_Color FromCMYK( float _c, float _m, float _y, float _k );
// Oxygene public class function FromCMYK( _c : Single; _m : Single; _y : Single; _k : Single ) : TGIS_Color;
Name | Type | Description |
---|---|---|
_c | float Single | cyan; expected value: 0..1 |
_m | float Single | magenta; expected value: 0..1 |
_y | float Single | yellow; expected value: 0..1 |
_k | float Single | key (black); expected value: 0..1 |
Type | Description |
---|---|
TGIS_Color | Created color. |