|
constexpr | RColor ()=default |
|
constexpr | RColor (AutoTag) |
| Constructs an automatically assigned color. Call as RColor col(RColor::kAuto) . More...
|
|
constexpr | RColor (const RGBA &rgba) |
| Initialize a RColor with red, green, blue and alpha component as an array. More...
|
|
constexpr | RColor (float paletteOrdinal) |
| Initialize a RColor with a RPalette ordinal. More...
|
|
constexpr | RColor (float r, float g, float b, Alpha alpha=kOpaque) |
| Initialize a RColor with red, green, blue and alpha component. More...
|
|
constexpr | RColor (float r, float g, float b, float alpha) |
| Initialize a RColor with red, green, blue and alpha component. More...
|
|
float | GetAlpha () const |
| For RGBA or auto colors, get the alpha component (0..1). More...
|
|
float | GetBlue () const |
| For RGBA or auto colors, get the blue component (0..1). More...
|
|
float | GetGreen () const |
| For RGBA or auto colors, get the green component (0..1). More...
|
|
void | GetHLS (float &hue, float &light, float &satur) |
| Return the Hue, Light, Saturation (HLS) definition of this RColor. More...
|
|
float | GetPaletteOrdinal () const |
| If this is an ordinal in a palette, resolve the. More...
|
|
float | GetRed () const |
| For RGBA or auto colors, get the red component (0..1). More...
|
|
bool | IsAuto () const |
| Determine whether this RColor will be assigned a actual color upon drawing. More...
|
|
bool | IsPaletteOrdinal () const |
| Determine whether this RColor is storing an ordinal of a RPalette (in contrast to RGBA). More...
|
|
bool | IsRGBA () const |
| Determine whether this RColor is storing RGBA (in contrast to an ordinal of a RPalette). More...
|
|
void | SetAlpha (Alpha a) |
| For RGBA or auto colors, set the alpha component. More...
|
|
void | SetAlpha (float a) |
| For RGBA or auto colors, set the alpha component. More...
|
|
void | SetBlue (float b) |
| For RGBA or auto colors, set the blue component. More...
|
|
void | SetGreen (float g) |
| For RGBA or auto colors, set the green component. More...
|
|
void | SetRed (float r) |
| For RGBA or auto colors, set the red component. More...
|
|
void | SetRGBFromHLS (float hue, float light, float satur) |
| Set the Red Green and Blue (RGB) values from the Hue, Light, Saturation (HLS). More...
|
|