X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=src%2Fgraphics%2Fcolors.h;h=803e0901a0e5082eeafb667adbb7e31392983a80;hb=617dcc71d9a71663f63fb56ffac2505b45bf91b9;hp=e502735da68822428d13c0253c77a3f548ec1c67;hpb=75f5db75a347995fe351235fa94fb657efb2881d;p=physics.git diff --git a/src/graphics/colors.h b/src/graphics/colors.h index e502735..803e090 100644 --- a/src/graphics/colors.h +++ b/src/graphics/colors.h @@ -1,5 +1,14 @@ +/// ***** Public Variables ***** + +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};