X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fgeometrybuilder.h;h=40bcd13e6b37b504d3c22ad3780ccce7a9b521b1;hp=e1c877dfbc5fd06f76abbc4103362bf3fb079ca6;hb=HEAD;hpb=fc503f2996e663e6bea88d95e4b251dd87428161 diff --git a/source/geometrybuilder.h b/source/geometrybuilder.h deleted file mode 100644 index e1c877df..00000000 --- a/source/geometrybuilder.h +++ /dev/null @@ -1,49 +0,0 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2011 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#ifndef MSP_GL_GEOMETRYBUILDER_H_ -#define MSP_GL_GEOMETRYBUILDER_H_ - -namespace Msp { -namespace GL { - -class Mesh; -class PrimitiveBuilder; - -class GeometryBuilder -{ -public: - enum TextureFit - { - STRETCH, - CROP, - WRAP - }; - -protected: - int tangent_attr; - int binormal_attr; - TextureFit tex_fit; - - GeometryBuilder(); - -public: - GeometryBuilder &tangent(unsigned); - GeometryBuilder &binormal(unsigned); - GeometryBuilder &texture_fit(TextureFit); -protected: - void adjust_texture_scale(float &, float &, float, float) const; - -public: - virtual void build(PrimitiveBuilder &) const = 0; - void build(Mesh &) const; -}; - -} // namespace GL -} // namespace Msp - -#endif