00001 // Copyright (C) 2011 Soren Hauberg 00002 // 00003 // This program is free software; you can redistribute it and/or 00004 // modify it under the terms of the GNU General Public License 00005 // as published by the Free Software Foundation; either version 3 00006 // of the License, or (at your option) any later version. 00007 // 00008 // This program is distributed in the hope that it will be useful, but 00009 // WITHOUT ANY WARRANTY; without even the implied warranty of 00010 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00011 // General Public License for more details. 00012 // 00013 // You should have received a copy of the GNU General Public License 00014 // along with this program; if not, see <http://www.gnu.org/licenses/>. 00015 00016 #ifndef GLAUXIL_H 00017 #define GLAUXIL_H 00018 00019 #ifdef __APPLE__ 00020 #include <glut.h> 00021 #else 00022 #include <GL/glut.h> 00023 #endif 00024 #include "math_types.h" 00025 00041 void partial_cylinder (float radius, float height, float theta_start, float theta_stop); 00042 00049 void draw_camera (const vector3 &cam); 00050 00051 #endif // GLAUXIL_H