Define color constants
This commit is contained in:
parent
bf91fff5a2
commit
c90c545f40
2 changed files with 11 additions and 0 deletions
|
@ -13,6 +13,13 @@
|
|||
namespace charles {
|
||||
namespace basics {
|
||||
|
||||
const Color Color::Black = Color();
|
||||
const Color Color::White = Color(1, 1, 1);
|
||||
const Color Color::Red = Color(1, 0, 0);
|
||||
const Color Color::Green = Color(0, 1, 0);
|
||||
const Color Color::Blue = Color(0, 0, 1);
|
||||
|
||||
|
||||
/*
|
||||
* charles::basics::Color::Color --
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue