]> git.tdb.fi Git - libs/gl.git/blobdiff - source/capsule.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / capsule.h
diff --git a/source/capsule.h b/source/capsule.h
deleted file mode 100644 (file)
index 07d06f5..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef MSP_GL_CAPSULE_H_
-#define MSP_GL_CAPSULE_H_
-
-#include <msp/gl/geometrybuilder.h>
-
-namespace Msp {
-namespace GL {
-
-class CapsuleBuilder: public GeometryBuilder
-{
-private:
-       float radius;
-       float length;
-       unsigned segments;
-       unsigned rings;
-
-public:
-       CapsuleBuilder(float, float, unsigned = 16, unsigned = 9);
-
-       using GeometryBuilder::build;
-       virtual void build(PrimitiveBuilder &) const;
-};
-
-} // namepace GL
-} // namespace Msp
-
-#endif