]> 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 c671bfe..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2011  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#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