|
static const Color | Black = Color(0.0f, 0.0f, 0.0f, 1.0f) |
| A color with all components set to zero.
|
|
static const Color | White = Color(1.0f, 1.0f, 1.0f, 1.0f) |
| A color with all components set to one.
|
|
static const Color | Red = Color(1.0f, 0.0f, 0.0f, 1.0f) |
| A color with the red component set to one.
|
|
static const Color | Green = Color(0.0f, 1.0f, 0.0f, 1.0f) |
| A color with the green component set to one.
|
|
static const Color | Blue = Color(0.0f, 0.0f, 1.0f, 1.0f) |
| A color with the blue component set to one.
|
|
static const Color | Yellow = Color(1.0f, 1.0f, 0.0f, 1.0f) |
| A color with the red and green components set to one.
|
|
static const Color | Cyan = Color(0.0f, 1.0f, 1.0f, 1.0f) |
| A color with the green and blue components set to one.
|
|
static const Color | Magenta = Color(1.0f, 0.0f, 1.0f, 1.0f) |
| A color with the red and blue components set to one.
|
|
static const Color | Orange = Color(1.0f, 0.5f, 0.0f, 1.0f) |
| A color with the red and green components set to one and the blue component set to zero.
|
|
static const Color | Purple = Color(0.5f, 0.0f, 1.0f, 1.0f) |
| A color with the red and blue components set to one and the green component set to zero.
|
|
static const Color | Pink = Color(1.0f, 0.0f, 0.5f, 1.0f) |
| A color with the red and blue components set to one and the green component set to zero.
|
|
static const Color | Brown = Color(0.5f, 0.25f, 0.0f, 1.0f) |
| A color with the red and green components set to one and the blue component set to zero.
|
|
static const Color | Grey = Color(0.5f, 0.5f, 0.5f, 1.0f) |
| A color with all components set to 0.5.
|
|
static const Color | Dark_grey = Color(0.25f, 0.25f, 0.25f, 1.0f) |
| A color with all components set to 0.25.
|
|
static const Color | Light_grey = Color(0.75f, 0.75f, 0.75f, 1.0f) |
| A color with all components set to 0.75.
|
|
static const Color | Teal = Color(0.0f, 0.5f, 0.5f, 1.0f) |
| A color with the green and blue components set to 0.5 and the red component set to zero.
|
|
static const Color | Lime = Color(0.5f, 1.0f, 0.5f, 1.0f) |
| A color with the red and green components set to 0.5 and the blue component set to zero.
|
|
static const Color | Maroon = Color(0.5f, 0.0f, 0.0f, 1.0f) |
| A color with the red component set to 0.5 and the green and blue components set to zero.
|
|
static const Color | Navy = Color(0.0f, 0.0f, 0.5f, 1.0f) |
| A color with the blue component set to 0.5 and the red and green components set to zero.
|
|
static const Color | Olive = Color(0.5f, 0.5f, 0.0f, 1.0f) |
| A color with the red and green components set to 0.5 and the blue component set to zero.
|
|
static const Color | Silver = Color(0.75f, 0.75f, 0.75f, 1.0f) |
| A color with all components set to 0.75.
|
|
static const Color | Gold = Color(1.0f, 0.85f, 0.0f, 1.0f) |
| A color with the red component set to 1 and the green and blue components set to 0.85.
|
|
Represents a color with red, green, blue, and alpha components.