X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=src%2Fgraphics%2Fgraphics.h;h=6c58ef71c44a973e9cacca2ca3e899792c46222d;hb=389bf8fdd7e1b8f4fe21e5a9fdb477d40d03d829;hp=07b317a6c6d9693e126dd5e10292c1fa370001d1;hpb=617dcc71d9a71663f63fb56ffac2505b45bf91b9;p=physics.git diff --git a/src/graphics/graphics.h b/src/graphics/graphics.h index 07b317a..6c58ef7 100644 --- a/src/graphics/graphics.h +++ b/src/graphics/graphics.h @@ -1,13 +1,38 @@ +/* + * 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 . + */ + #ifndef GRAPHICS_H #define GRAPHICS_H -#include "../Vector2.h" +#include +using namespace bear; + +#include + /// ***** Header Methods ***** -void graphicsInit(); -void graphicsClean(); +namespace graphics +{ + void init(); + void clean(); -void glDrawCircle(float radius, const Vector2&, const float* color = 0); + void drawCircle(float radius, const Vector2&, const float* color = 0); + void drawPolygon(const std::vector& points, const float* color = 0); +} #endif // GRAPHICS_H