From 8ac9b27f5f0a1e833974058464cdf7029c9d7e0b Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sat, 2 Feb 2008 14:14:15 +0000 Subject: removed libgl --- src/gl/sphere.h | 51 --------------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 src/gl/sphere.h (limited to 'src/gl/sphere.h') diff --git a/src/gl/sphere.h b/src/gl/sphere.h deleted file mode 100644 index b448a88..0000000 --- a/src/gl/sphere.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - gl/sphere.h - This file is part of the Osirion project and is distributed under - the terms of the GNU General Public License version 2 -*/ - -#ifndef __INCLUDED_GL_SPHERE_H__ -#define __INCLUDED_GL_SPHERE_H__ - -#include "gl/gllib.h" - -namespace gl { - -/// a drawable OpenGL block shape -class Sphere -{ -public: - /// create a new sphere - Sphere(math::Vector3f p = math::Vector3f(), float r = 1.0f); - - /// copy constructor - Sphere(const Sphere &other); - - /// destructor - ~Sphere(); - - /// assignment operator - Sphere& operator=(const Sphere &other); - - /// radius of the sphere - float radius; - - /// position of the sphere - math::Vector3f position; - - /// draw the sphere - void draw(); - - /// Top color - math::Color topcolor; - /// bottom color - math::Color bottomcolor; - -private: - float *sintable; - float *costable; -}; - -} // namespace gl - -#endif // __INCLUDED_GL_SPHERE_H__ -- cgit v1.2.3