Crgb8T
C++ | Python |
---|---|
Crgb8T<Cprecision> | Crgb8Tbyte (Template instantiation, Cprecision = byte). |
Template class for 8-bit RGB colors.
Inherited by
Properties
Type | Name | Description |
---|---|---|
Cprecision | r | Red value (C++ only). |
Cprecision | g | Green value (C++ only). |
Cprecision | b | Blue value (C++ only). |
Cprecision[3] | pChannels | RGB values vector (C++ only). |
Methods
Name | Description |
---|---|
assign | Initializes RGB color. |
r | Returns red color (Python only). |
g | Returns green color (Python only). |
b | Returns blue color (Python only). |
[] | Returns color by index (0 = red, 1 = green, 2 = blue, Python only). |
assign
Initializes RGB color.
Language | Syntax |
---|---|
C++ | void assign( Cprecision cr, Cprecision cg, Cprecision cb ) |
Python | void assign( int cr, ing, cg, int cb ) |