From: Patrik Gornicz Date: Thu, 17 Jul 2008 02:47:21 +0000 (-0400) Subject: colors added X-Git-Tag: v0.01~31 X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?p=physics.git;a=commitdiff_plain;h=75f5db75a347995fe351235fa94fb657efb2881d colors added --- diff --git a/src/graphics/colors.h b/src/graphics/colors.h new file mode 100644 index 0000000..e502735 --- /dev/null +++ b/src/graphics/colors.h @@ -0,0 +1,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};