CTurtle
|
The primary representation of Color for this library. Represented as a simple RGB color composed of unsigned bytes, Color objects can be referenced by string and by packed integer. More...
#include <CTurtle.hpp>
Public Types | |
typedef uint8_t | component_t |
Public Member Functions | |
Color (detail::color_int_t packedColor) | |
Color (component_t r, component_t g, component_t b) | |
Color (const Color &other) | |
Color (const std::string &name) | |
Color & | operator= (detail::color_int_t pack) |
const component_t * | rgbPtr () const |
Returns a pointer to the first component of this color. This is useful for functions which require color as an input array. Returns a read-only pointer to the elements, in sequential order. | |
Public Attributes | ||
union { | ||
struct { | ||
component_t r | ||
component_t g | ||
component_t b | ||
} | ||
component_t components [3] | ||
}; | ||
The primary representation of Color for this library. Represented as a simple RGB color composed of unsigned bytes, Color objects can be referenced by string and by packed integer.