CUGL
Cornell University Game Library
Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | List of all members
cugl::Color4 Class Reference

#include <CUColor4.h>

Public Member Functions

 Color4 ()
 
 Color4 (GLubyte r, GLubyte g, GLubyte b, GLubyte a=255)
 
 Color4 (GLuint color)
 
 Color4 (const float *array)
 
 ~Color4 ()
 
Color4operator= (GLuint color)
 
Color4operator= (const float *array)
 
Color4set (GLubyte r, GLubyte g, GLubyte b, GLubyte a=255)
 
Color4set (const float *array)
 
Color4set (GLuint color)
 
Color4set (const Color4 &c)
 
Color4clamp (Color4 min, Color4 max)
 
Color4 getClamp (Color4 min, Color4 max) const
 
Color4add (Color4 c, bool alpha=false)
 
Color4add (GLubyte r, GLubyte g, GLubyte b, GLubyte a=0)
 
Color4subtract (Color4 c, bool alpha=false)
 
Color4subtract (GLubyte r, GLubyte g, GLubyte b, GLubyte a=0)
 
Color4scale (float s, bool alpha=false)
 
Color4scale (float sr, float sg, float sb, float sa=1)
 
Color4scale (Color4 c, bool alpha=false)
 
Color4map (std::function< GLubyte(GLubyte)> func, bool alpha=false)
 
Color4 getMap (std::function< GLubyte(GLubyte)> func, bool alpha=false) const
 
Color4complement (bool alpha=false)
 
Color4 getComplement (bool alpha=false) const
 
Color4lerp (const Color4f &other, float alpha)
 
Color4blend (Color4 other)
 
Color4blendPre (Color4 other)
 
Color4premultiply ()
 
Color4unpremultiply ()
 
Color4 getLerp (Color4 other, float alpha) const
 
Color4 getBlend (Color4 other) const
 
Color4f getBlendPre (Color4 other) const
 
Color4 getPremultiplied () const
 
Color4 getUnpremultiplied () const
 
GLuint getRGBA () const
 
Color4operator+= (Color4 c)
 
Color4operator-= (Color4 c)
 
Color4operator*= (float s)
 
Color4operator*= (Color4 c)
 
const Color4 operator+ (Color4 c) const
 
const Color4 operator- (Color4 c) const
 
const Color4 operator* (float s) const
 
const Color4 operator* (Color4 c) const
 
bool operator< (Color4 c) const
 
bool operator<= (Color4 c) const
 
bool operator> (Color4 c) const
 
bool operator>= (Color4 c) const
 
bool operator== (Color4 c) const
 
bool operator!= (Color4 c) const
 
bool darkerThan (Color4 c) const
 
bool lighterThan (Color4 c) const
 
std::string toString (bool verbose=false) const
 
 operator std::string () const
 
 operator Vec4 () const
 
 Color4 (const Vec4 &vector)
 
Color4operator= (const Vec4 &vector)
 
 operator Vec3 () const
 
 Color4 (const Vec3 &vector)
 
Color4operator= (const Vec3 &vector)
 
 operator Color4f () const
 
 Color4 (const Color4f &color)
 
Color4operator= (const Color4f &color)
 

Static Public Member Functions

static Color4lerp (Color4 c1, Color4 c2, float alpha, Color4 *dst)
 
static Color4blend (Color4 c1, Color4 c2, Color4 *dst)
 
static Color4blendPre (Color4 c1, Color4 c2, Color4 *dst)
 

Public Attributes

union {
   struct {
      GLubyte   r
 
      GLubyte   g
 
      GLubyte   b
 
      GLubyte   a
 
   } 
 
   Uint32   rgba
 
}; 
 

Static Public Attributes

static const Color4 CLEAR
 
static const Color4 WHITE
 
static const Color4 BLACK
 
static const Color4 YELLOW
 
static const Color4 BLUE
 
static const Color4 GREEN
 
static const Color4 RED
 
static const Color4 MAGENTA
 
static const Color4 CYAN
 
static const Color4 ORANGE
 
static const Color4 GRAY
 
static const Color4 CORNFLOWER
 
static const Color4 PAPYRUS
 

Detailed Description

This class is a RGBA color composed of 4 unsigned bytes.

This is the preferred (non-transparent) color class for storage. It is slightly slower on calculations, because it often has to shift to 0..1 for all its values. It is also slower to cast to Vec3.

Constructor & Destructor Documentation

cugl::Color4::Color4 ( )
inline

Constructs a new clear color (all zeros).

cugl::Color4::Color4 ( GLubyte  r,
GLubyte  g,
GLubyte  b,
GLubyte  a = 255 
)
inline

Constructs a new color initialized to the specified values.

Parameters
rThe red color.
gThe green color.
bThe blue color.
aThe alpha value (optional).
cugl::Color4::Color4 ( GLuint  color)
inline

Creates a new color from an integer interpreted as an RGBA value.

This representation assigned is native to the platform, but it will be normalized to network order. In this representation, red will always be the highest order byte and alpha will always be the lowest order byte.

Parameters
colorThe integer to interpret as an RGBA value.
cugl::Color4::Color4 ( const float *  array)

Constructs a new color from the values in the specified array.

The color values must all be in the range 0..1. They are multiplied by 255.0 and rounded up.

Parameters
arrayAn array containing the color values in the order r, g, b, a.
cugl::Color4::~Color4 ( )
inline

Destroys this color, releasing all resources

cugl::Color4::Color4 ( const Vec4 vector)
explicit

Creates a color from the given vector.

The attributes are read in the order x,y,z,w. They are all multiplied by 255.0f and rounded up before assignment.

Parameters
vectorThe vector to convert
cugl::Color4::Color4 ( const Vec3 vector)
explicit

Creates a color from the given vector.

The attributes are read in the order x,y,z. They are all multiplied by 255.0f and rounded up before assignment. The alpha value is 255.

Parameters
vectorThe vector to convert
cugl::Color4::Color4 ( const Color4f color)
explicit

Creates a byte-based color from the given float-based color.

The attributes are read in the order r,g,b,a. They are all multiplied by 255.0f and rounded up before assignment.

Parameters
colorThe color to convert

Member Function Documentation

Color4& cugl::Color4::add ( Color4  c,
bool  alpha = false 
)
inline

Adds the given color to this one in place.

This operation is functionally identical to additive blending. The addition is clamped so that this remains a valid color.

Parameters
cThe color to add
alphaWhether to add the alpha values (optional)
Returns
A reference to this (modified) Color4 for chaining.
Color4& cugl::Color4::add ( GLubyte  r,
GLubyte  g,
GLubyte  b,
GLubyte  a = 0 
)
inline

Adds the given values to this color.

The addition is clamped so that this remains a valid color.

Parameters
rThe red color to add.
gThe green color to add.
bThe blue color to add.
aThe alpha value (optional).
Returns
A reference to this (modified) Color4 for chaining.
Color4& cugl::Color4::blend ( Color4  other)
inline

Blends this color with the other one, storing the new value in place.

The blending is the standard over operation with this color as the destination. It assumes that the color values are not premultiplied.

Parameters
otherThe color to interpolate with.
Returns
This color, after the blending.
static Color4* cugl::Color4::blend ( Color4  c1,
Color4  c2,
Color4 dst 
)
static

Blends the two colors c1 and c2, assuming they are not premultiplied.

The blending is the standard over operation with color c1 as the source and c2 as the destination. It assumes that the color values are not premultiplied.

Parameters
c1The source color.
c2The destination color.
dstThe color to store the result in
Returns
A reference to dst for chaining
Color4& cugl::Color4::blendPre ( Color4  other)
inline

Blends this color with the other one, storing the new value in place.

The blending is the standard over operation with this color as the destination. It assumes that this color is premultiplied.

Parameters
otherThe color to interpolate with.
Returns
This color, after the blending.
static Color4* cugl::Color4::blendPre ( Color4  c1,
Color4  c2,
Color4 dst 
)
static

Blends the two colors c1 and c2, assuming they are premultiplied.

The blending is the standard over operation with color c1 as the source and c2 as the destination. It assumes that the color values are premultiplied.

Parameters
c1The source color.
c2The destination color.
dstThe color to store the result in
Returns
A reference to dst for chaining
Color4& cugl::Color4::clamp ( Color4  min,
Color4  max 
)

Clamps this color within the given range.

Parameters
minThe minimum value.
maxThe maximum value.
Returns
A reference to this (modified) Color4 for chaining.
Color4& cugl::Color4::complement ( bool  alpha = false)
inline

Complements this color.

The complement of the color is the (255-v) for each value v.

Parameters
alphaWhether to complement the alpha value (optional)
Returns
A reference to this (modified) Color4f for chaining.
bool cugl::Color4::darkerThan ( Color4  c) const
inline

Returns true if this color is dominated by the given color.

Domination means that all components of the given color are greater than or equal to the components of this one. However, alpha is reversed for this computation, as a greater value means more opaque (and hence darker).

Parameters
cThe color to compare against.
Returns
True if this color is dominated by the given color.
Color4 cugl::Color4::getBlend ( Color4  other) const
inline

Returns a blend of this color with the other one.

The blending is the standard over operation with this color as the destination. It assumes that the color values are not premultiplied.

Note: this does not modify this color.

Parameters
otherThe color to interpolate with.
Returns
The newly blended color
Color4f cugl::Color4::getBlendPre ( Color4  other) const
inline

Returns a blend of this color with the other one.

The blending is the standard over operation with this color as the destination. It assumes that this color is premultiplied.

Note: this does not modify this color.

Parameters
otherThe color to interpolate with.
Returns
The newly blended color
Color4 cugl::Color4::getClamp ( Color4  min,
Color4  max 
) const
inline

Returns a copy of this color clamped within the given range.

Note: this does not modify this color.

Parameters
minThe minimum value.
maxThe maximum value.
Returns
A copy of this color clamped within the given range.
Color4 cugl::Color4::getComplement ( bool  alpha = false) const
inline

Returns the complement of this color.

The complement of the color is the (255-v) for each value v.

Parameters
alphaWhether to complement the alpha value (optional)

Note: this does not modify this color.

Returns
The complement of this color
Color4 cugl::Color4::getLerp ( Color4  other,
float  alpha 
) const
inline

Returns the linear interpolation of this color with other.

If alpha is 0, the color is unchanged. If alpha is 1, the color is other. Otherwise it is a value in between. If alpha is outside of the range 0 to 1, it is clamped to the nearest value.

This method just implements standard linear interpolation. It does not attempt to give any blending semantics to it.

Note: this does not modify this color.

Parameters
otherThe color to interpolate with.
alphaThe interpolation value in 0..1
Returns
The linear interpolation of this color with other.
Color4 cugl::Color4::getMap ( std::function< GLubyte(GLubyte)>  func,
bool  alpha = false 
) const
inline

Returns a copy of this color with func applied to each component.

This method supports any function that has the signature Glubyte func(Glubyte). If you wish to use float-oriented function, use Color4f instead.

Parameters
funcThe function to map on the color values.
alphaWhether to modify the alpha value (optional)
Returns
A copy of this color with func applied to each component.
Color4 cugl::Color4::getPremultiplied ( ) const
inline

Returns the premultiplied version of this color, using its current alpha.

This class does not store whether the color is already premultiplied. Hence premultiplying an already premultiplied color will have a compounding effect.

Note: this does not modify this color.

Returns
The newly premultiplied color
GLuint cugl::Color4::getRGBA ( ) const
inline

Returns the packed integer representation of this color

This representation returned is native to the platform. In other words, it is guaranteed to be the same value set in either the constructor or a setter.

In this representation, red will always be the highest order byte and alpha will always be the lowest order byte.

Returns
the packed integer representation of this color
Color4 cugl::Color4::getUnpremultiplied ( ) const
inline

Returns the unpremultiplied version of this color, using its current alpha.

This class does not store whether the color is already premultiplied. Hence unpremultiplying an non-premultiplied color will have a compounding effect.

If the alpha value is 0, the copy is equal to the original color.

Note: this does not modify this color.

Returns
The newly premultiplied color
Color4& cugl::Color4::lerp ( const Color4f other,
float  alpha 
)
inline

Modifies this color to be the linear interpolation with other.

If alpha is 0, the color is unchanged. If alpha is 1, the color is other. Otherwise it is a value in between. If alpha is outside of the range 0 to 1, it is clamped to the nearest value.

This method just implements standard linear interpolation. It does not attempt to give any blending semantics to it.

Parameters
otherThe color to interpolate with.
alphaThe interpolation value in 0..1
Returns
This color, after the interpolation.
static Color4* cugl::Color4::lerp ( Color4  c1,
Color4  c2,
float  alpha,
Color4 dst 
)
static

Interpolates the two colors c1 and c2, and stores the result in dst.

If alpha is 0, the result is c1. If alpha is 1, the color is c2. Otherwise it is a value in c1..c2. If alpha is outside of the range 0 to 1, it is clamped to the nearest value.

This method just implements standard linear interpolation. It does not attempt to give any blending semantics to it.

Parameters
c1The first color.
c2The second color.
alphaThe interpolation value in 0..1
dstThe color to store the result in
Returns
A reference to dst for chaining
bool cugl::Color4::lighterThan ( Color4  c) const
inline

Returns true if this color dominates the given color.

Domination means that all components of this color are greater than or equal to the components of the given color. However, alpha is reversed for this computation, as a lesser value means more transparent (and hence lighter).

Parameters
cThe color to compare against.
Returns
True if this color is dominated by the given color.
Color4& cugl::Color4::map ( std::function< GLubyte(GLubyte)>  func,
bool  alpha = false 
)
inline

Maps the given function to the color values in place.

This method supports any function that has the signature Glubyte func(Glubyte). If you wish to use float-oriented function, use Color4f instead.

Parameters
funcThe function to map on the color values.
alphaWhether to modify the alpha value (optional)
Returns
A reference to this (modified) Color4f for chaining.
cugl::Color4::operator Color4f ( ) const

Cast from Color4f to a float-based Color4.

cugl::Color4::operator std::string ( ) const
inline

Cast from Color4f to a string.

cugl::Color4::operator Vec3 ( ) const

Cast from Color4f to a vector.

The attributes are all divided by 255.0. The alpha value is dropped.

cugl::Color4::operator Vec4 ( ) const

Cast from Color4 to a vector.

The attributes are all divided by 255.0.

bool cugl::Color4::operator!= ( Color4  c) const
inline

Returns true if this color is not equal to the given color.

Comparison is exact, which may be unreliable given that the attributes are floats.

Parameters
cThe color to compare against.
Returns
True if this color is not equal to the given color.
const Color4 cugl::Color4::operator* ( float  s) const
inline

Returns the scalar product of this color with the given color.

The scaling is clamped so that this remains a valid color.

This version of scaling always multiplies alpha values.

Note: this does not modify this color.

Parameters
sThe value to scale by.
Returns
The scalar product of this color with the given value.
const Color4 cugl::Color4::operator* ( Color4  c) const
inline

Returns the scalar product of this color with the given color.

This operation is functionally identical to multiplicative blending.

Note: this does not modify this color.

Parameters
cThe color to scale by.
Returns
The scalar product of this color with the given color.
Color4& cugl::Color4::operator*= ( float  s)
inline

Scales this color in place by the given factor.

The scaling is clamped so that this remains a valid color.

This version of scaling always multiplies alpha values.

Parameters
sThe value to scale by
Returns
A reference to this (modified) Color4 for chaining.
Color4& cugl::Color4::operator*= ( Color4  c)
inline

Scales this color nonuniformly by the given color.

This operation is functionally identical to multiplicative blending.

Parameters
cThe color to scale by
Returns
A reference to this (modified) Color4 for chaining.
const Color4 cugl::Color4::operator+ ( Color4  c) const
inline

Returns the sum of this color with the given color.

This operation is functionally identical to additive blending. The addition is clamped so that this remains a valid color.

This version of addition always adds alpha values.

Note: this does not modify this color.

Parameters
cThe color to add.
Returns
The sum of this color with the given color.
Color4& cugl::Color4::operator+= ( Color4  c)
inline

Adds the given color to this one in place.

This operation is functionally identical to additive blending. The addition is clamped so that this remains a valid color.

This version of addition always adds alpha values.

Parameters
cThe color to add
Returns
A reference to this (modified) Color4 for chaining.
const Color4 cugl::Color4::operator- ( Color4  c) const
inline

Returns the difference of this color with the given color.

This operation is functionally identical to subtractive blending. The subtraction is clamped so that this remains a valid color.

This version of subraction always subtracts alpha values.

Note: this does not modify this color.

Parameters
cThe color to subtract.
Returns
The difference of this color with the given color.
Color4& cugl::Color4::operator-= ( Color4  c)
inline

Subtracts the given color from this one in place.

This operation is functionally identical to subtractive blending. The subtraction is clamped so that this remains a valid color.

This version of subraction always subtracts alpha values.

Parameters
cThe color to subtract
Returns
A reference to this (modified) Color4 for chaining.
bool cugl::Color4::operator< ( Color4  c) const

Returns true if this color is less than the given color.

This comparison uses lexicographical order of rgba. To test if all components in this color are less than those of c, use the method darkerThan().

Parameters
cThe color to compare against.
Returns
True if this color is less than the given color.
bool cugl::Color4::operator<= ( Color4  c) const
inline

Returns true if this color is less than or equal the given color.

This comparison uses lexicographical order of rgba. To test if all components in this color are less than those of c, use the method darkerThan().

Parameters
cThe color to compare against.
Returns
True if this color is less than or equal the given color.
Color4& cugl::Color4::operator= ( GLuint  color)
inline

Sets this color to the integer interpreted as an RGBA value.

This representation assigned is native to the platform, but it will be normalized to network order. In this representation, red will always be the highest order byte and alpha will always be the lowest order byte.

Parameters
colorThe integer to interpret as an RGBA value.
Returns
A reference to this (modified) Color4 for chaining.
Color4& cugl::Color4::operator= ( const float *  array)
inline

Sets the elements of this color from the values in the specified array.

The color values must all be in the range 0..1. They are multiplied by 255.0 and rounded up

Parameters
arrayAn array containing the color values in the order r, g, b, a
Returns
A reference to this (modified) Color4 for chaining.
Color4& cugl::Color4::operator= ( const Vec4 vector)

Sets the coordinates of this color to those of the given vector.

The attributes are read in the order x,y,z,w. They are all multiplied by 255.0f and rounded up before assignment.

Parameters
vectorThe vector to convert
Returns
A reference to this (modified) Color4f for chaining.
Color4& cugl::Color4::operator= ( const Vec3 vector)

Sets the coordinates of this color to those of the given vector.

The attributes are read in the order x,y,z. They are all multiplied by 255.0f and rounded up before assignment. The alpha value is 255.

Parameters
vectorThe vector to convert
Returns
A reference to this (modified) Color4f for chaining.
Color4& cugl::Color4::operator= ( const Color4f color)

Sets the attributes of this color from the given float-based color.

The attributes are read in the order r,g,b,a. They are all multiplied by 255.0f and rounded up before assignment.

Parameters
colorThe color to convert.
Returns
A reference to this (modified) Color4f for chaining.
bool cugl::Color4::operator== ( Color4  c) const
inline

Returns true if this color is equal to the given color.

Parameters
cThe color to compare against.
Returns
True if this color is equal to the given color.
bool cugl::Color4::operator> ( Color4  c) const

Returns true if this color is greater than the given color.

This comparison uses lexicographical order of rgba. To test if all components in this color are greater than those of c, use the method lighterThan().

Parameters
cThe color to compare against.
Returns
True if this color is greater than the given color.
bool cugl::Color4::operator>= ( Color4  c) const
inline

Returns true if this color is greater than or equal the given color.

This comparison uses lexicographical order of rgba. To test if all components in this color are greater than those of c, use the method lighterThan().

Parameters
cThe color to compare against.
Returns
True if this color is greater than or equal the given color.
Color4& cugl::Color4::premultiply ( )
inline

Premultiplies this color with its current alpha.

This class does not store whether the color is already premultiplied. Hence premultiplying an already premultiplied color will have a compounding effect.

Returns
This color, after premultiplication.
Color4& cugl::Color4::scale ( float  s,
bool  alpha = false 
)
inline

Scales this color in place by the given factor.

The scaling is clamped so that this remains a valid color.

Parameters
sThe scalar to multiply by
alphaWhether to scale the alpha value (optional)
Returns
A reference to this (modified) Color4 for chaining.
Color4& cugl::Color4::scale ( float  sr,
float  sg,
float  sb,
float  sa = 1 
)
inline

Scales this color nonuniformly by the given factors.

The scaling is clamped so that this remains a valid color.

Parameters
srThe scalar to multiply the red value
sgThe scalar to multiply the green value
sbThe scalar to multiply the blue value
saThe scalar to multiply the alpha value (optional)
Returns
A reference to this (modified) Color4 for chaining.
Color4& cugl::Color4::scale ( Color4  c,
bool  alpha = false 
)
inline

Scales this color nonuniformly by the given color.

This operation is functionally identical to multiplicative blending.

Parameters
cThe color to scale by
alphaWhether to scale the alpha value (optional)
Returns
A reference to this (modified) Color4 for chaining.
Color4& cugl::Color4::set ( GLubyte  r,
GLubyte  g,
GLubyte  b,
GLubyte  a = 255 
)
inline

Sets the elements of this color to the specified values.

Parameters
rThe red color.
gThe green color.
bThe blue color.
aThe alpha value (optional).
Returns
A reference to this (modified) Color43 for chaining.
Color4& cugl::Color4::set ( const float *  array)

Sets the elements of this color from the values in the specified array.

The color values must all be in the range 0..1. They are multiplied by 255.0 and rounded up

Parameters
arrayAn array containing the color values in the order r, g, b, a
Returns
A reference to this (modified) Color4 for chaining.
Color4& cugl::Color4::set ( GLuint  color)
inline

Sets this color to the integer interpreted as an RGBA value.

This setter processes the integer in RGBA order. Hence, 0xff0000ff represents red or the color (1, 0, 0, 1).

Parameters
colorThe integer to interpret as an RGBA value.
Returns
A reference to this (modified) Color4 for chaining.
Color4& cugl::Color4::set ( const Color4 c)
inline

Sets the values of this color to those in the specified color.

Parameters
cThe color to copy.
Returns
A reference to this (modified) Color4f for chaining.
Color4& cugl::Color4::subtract ( Color4  c,
bool  alpha = false 
)
inline

Subtracts the given color from this one in place.

This operation is functionally identical to subtractive blending. The subtraction is clamped so that this remains a valid color.

Parameters
cThe color to subtract
alphaWhether to subtract the alpha value (optional)
Returns
A reference to this (modified) Color4 for chaining.
Color4& cugl::Color4::subtract ( GLubyte  r,
GLubyte  g,
GLubyte  b,
GLubyte  a = 0 
)
inline

Subtracts the given values from this color.

The subtraction is clamped so that this remains a valid color.

Parameters
rThe red color to subtract.
gThe green color to subtract.
bThe blue color to subtract.
aThe alpha value (optional).
Returns
A reference to this (modified) Color4 for chaining.
std::string cugl::Color4::toString ( bool  verbose = false) const

Returns a string representation of this vector for debuggging purposes.

If verbose is true, the string will include class information. This allows us to unambiguously identify the class.

Parameters
verboseWhether to include class information
Returns
a string representation of this vector for debuggging purposes.
Color4& cugl::Color4::unpremultiply ( )
inline

Undoes premultiplication this color with its current alpha.

This class does not store whether the color is already premultiplied. Hence unpremultiplying an non-premultiplied color will have a compounding effect.

If the alpha value is 0, the color is unchanged.

Returns
This color, after undoing premultiplication.

Member Data Documentation

GLubyte cugl::Color4::a

The alpha value

GLubyte cugl::Color4::b

The blue value

const Color4 cugl::Color4::BLACK
static

The Black color (0,0,0,1)

const Color4 cugl::Color4::BLUE
static

The Blue color (0,0,1,1)

const Color4 cugl::Color4::CLEAR
static

The Clear color (0,0,0,0)

const Color4 cugl::Color4::CORNFLOWER
static

The classic XNA color (0.392,0.584,0.93,1)

const Color4 cugl::Color4::CYAN
static

The Cyan color (0,1,1,1)

GLubyte cugl::Color4::g

The green value

const Color4 cugl::Color4::GRAY
static

The Gray color (0.65,0.65,0.65,1)

const Color4 cugl::Color4::GREEN
static

The Green color (0,1,0,1)

const Color4 cugl::Color4::MAGENTA
static

The Magenta color (1,0,1,1)

const Color4 cugl::Color4::ORANGE
static

The Orange color (1,0.5,0,1)

const Color4 cugl::Color4::PAPYRUS
static

The Playing Fields color (0.933f,0.99f,0.65f,1.0f)

GLubyte cugl::Color4::r

The red value

const Color4 cugl::Color4::RED
static

The Red color (1,0,0,1)

Uint32 cugl::Color4::rgba

The color as a packed integer (WARNING: Endian specific)

const Color4 cugl::Color4::WHITE
static

The White color (1,1,1,1)

const Color4 cugl::Color4::YELLOW
static

The Yellow color (1,1,0,1)


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