Overload | Description |
---|---|
NColor Constructor(ENNamedColor) | Creates an RGB color from a named color |
NColor Constructor(UInt32) | Creates an RGB color from a packed uint. The color component bytes are ordered in this order: alpha, red, gree, blue. |
NColor Constructor(Byte,Byte,Byte) | Creates an opaque RGB color with the specified red, green, and blue values in the range [0 - 255]. The alpha is set to 255. |
NColor Constructor(Byte,Byte,Byte,Byte) | Creates an RGB color with the specified red, green, blue and alpha values in the range [0 - 255]. |
NColor Constructor(NColor,Byte) | Creates an RGB color based on the specified color and changes the transparency to the specified one. |
NColor Constructor(NColorSpace,NColorValueF) | Creates a color in the specified color space and with the specified value. The value must be from the rank of the color space. For example: RGB color space would expect NColorValue3F (c1 = red, c2 = green, c3 = blue) CMYK color space would expect NColorValue4F (c1 = cyan, c2 = magenta, c3 = yellow, c4 = black) |
NColor Constructor(NColorSpace,NColorValueF,UInt32) |