Color

Struct Color: This data structure represents colors in the RGBA format.

Members

Functions

opAssign
void opAssign(Color rhs)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

a
ubyte a;
Undocumented in source.
b
ubyte b;

Color.b is the 'B' value of the color.

g
ubyte g;

Color.g is the 'G' value of the color.

r
ubyte r;

Color.r is the 'R' value of the color.

Meta