]> git.tdb.fi Git - libs/gl.git/blobdiff - source/cylinder.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / cylinder.h
diff --git a/source/cylinder.h b/source/cylinder.h
deleted file mode 100644 (file)
index 62aa37f..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef CYLINDER_H_
-#define CYLINDER_H_
-
-#include "geometrybuilder.h"
-
-namespace Msp {
-namespace GL {
-
-class CylinderBuilder: public GeometryBuilder
-{
-private:
-       float radius;
-       float length;
-       unsigned segments;
-
-public:
-       CylinderBuilder(float, float, unsigned = 16);
-
-       virtual void build(PrimitiveBuilder &) const;
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif