massive cleaning of file section headers
[physics.git] / src / graphics / colors.h
CommitLineData
75f5db75 1
617dcc71
PG
2/// ***** Public Variables *****
3
f72f4a59
PG
4static float const cWhite[] = {1.0, 1.0, 1.0};
5static float const cBlack[] = {0.0, 0.0, 0.0};
6static float const cGrey[] = {0.5, 0.5, 0.5};
7
75f5db75
PG
8static float const cRed[] = {1.0, 0.0, 0.0};
9static float const cGreen[] = {0.0, 1.0, 0.0};
10static float const cBlue[] = {0.0, 0.0, 1.0};
f72f4a59 11
75f5db75 12static float const cYellow[] = {1.0, 1.0, 0.0};
f72f4a59
PG
13static float const cMagenta[] = {1.0, 0.0, 1.0};
14static float const cCyan[] = {0.0, 1.0, 1.0};