]> git.tdb.fi Git - libs/gl.git/blobdiff - source/box.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / box.h
diff --git a/source/box.h b/source/box.h
deleted file mode 100644 (file)
index 7e4b3e5..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2011  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#ifndef MSP_GL_BOX_H_
-#define MSP_GL_BOX_H_
-
-#include "geometrybuilder.h"
-#include "vector.h"
-
-namespace Msp {
-namespace GL {
-
-class BoxBuilder: public GeometryBuilder
-{
-private:
-       Vector3 origin;
-       Vector3 span;
-
-public:
-       BoxBuilder(float, float, float);
-       BoxBuilder(const Vector3 &, const Vector3 &);
-
-       virtual void build(PrimitiveBuilder &) const;
-private:
-       void build_face(PrimitiveBuilder &, const Vector3 &, const Vector3 &, const Vector3 &) const;
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif