X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?p=physics.git;a=blobdiff_plain;f=src%2Fgraphics%2Fcolors.h;h=03e76eadf2e50cac27a4a32aa5e2b8fad35aa745;hp=e502735da68822428d13c0253c77a3f548ec1c67;hb=f72f4a59026b8daa160908170f366c843aca5bb9;hpb=63ae369aa5699bbeb3613586ac446c2a5c1868e2 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};