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