X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=src%2Fgraphics%2Fcolors.h;h=03e76eadf2e50cac27a4a32aa5e2b8fad35aa745;hb=f206d19d6b5baa4cb25ba77726f1fd4fcd7492e3;hp=e502735da68822428d13c0253c77a3f548ec1c67;hpb=75f5db75a347995fe351235fa94fb657efb2881d;p=physics.git diff --git a/src/graphics/colors.h b/src/graphics/colors.h index e502735..03e76ea 100644 --- a/src/graphics/colors.h +++ b/src/graphics/colors.h @@ -1,5 +1,12 @@ +static float const cWhite[] = {1.0, 1.0, 1.0}; +static float const cBlack[] = {0.0, 0.0, 0.0}; +static float const cGrey[] = {0.5, 0.5, 0.5}; + static float const cRed[] = {1.0, 0.0, 0.0}; static float const cGreen[] = {0.0, 1.0, 0.0}; static float const cBlue[] = {0.0, 0.0, 1.0}; + static float const cYellow[] = {1.0, 1.0, 0.0}; +static float const cMagenta[] = {1.0, 0.0, 1.0}; +static float const cCyan[] = {0.0, 1.0, 1.0};