added more colors and balls
[physics.git] / src / graphics / colors.h
1
2 static float const cWhite[]     = {1.0, 1.0, 1.0};
3 static float const cBlack[]     = {0.0, 0.0, 0.0};
4 static float const cGrey[]      = {0.5, 0.5, 0.5};
5
6 static float const cRed[]       = {1.0, 0.0, 0.0};
7 static float const cGreen[]     = {0.0, 1.0, 0.0};
8 static float const cBlue[]      = {0.0, 0.0, 1.0};
9
10 static float const cYellow[]    = {1.0, 1.0, 0.0};
11 static float const cMagenta[]   = {1.0, 0.0, 1.0};
12 static float const cCyan[]      = {0.0, 1.0, 1.0};