X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=src%2Fgraphics%2Fcolors.h;h=051934affea041e2f22849dfe01eae1976b1c7c1;hb=389bf8fdd7e1b8f4fe21e5a9fdb477d40d03d829;hp=e502735da68822428d13c0253c77a3f548ec1c67;hpb=75f5db75a347995fe351235fa94fb657efb2881d;p=physics.git diff --git a/src/graphics/colors.h b/src/graphics/colors.h index e502735..051934a 100644 --- a/src/graphics/colors.h +++ b/src/graphics/colors.h @@ -1,5 +1,31 @@ +/* + * Copyright (C) 2008 Patrik Gornicz, Gornicz_P (at) hotmail (dot) com. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + + +/// ***** 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};