CTurtle
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Public Attributes | List of all members
cturtle::Color Class Reference

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)
 
Coloroperator= (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] 
 
};  
 

Detailed Description

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.

See also
detail::resolveColorComp()
detail::resolveColorInt()
fromName()

The documentation for this class was generated from the following file: