Edit

kc3-lang/ftgl/include/FTGLPolygonFont.h

Branch :

  • Show log

    Commit

  • Author : henry
    Date : 2001-09-16 21:52:46
    Hash : 6a024aef
    Message : Updated for changes in *Glyph classes. Added unicode render function. Updated comments

  • include/FTGLPolygonFont.h
  • #ifndef		__FTGLPolygonFont__
    #define		__FTGLPolygonFont__
    
    #include	"FTFont.h"
    
    #include "FTGL.h"
    
    
    class FTPolyGlyph;
    
    /**
     * FTGLPolygonFont is a specialisation of the FTFont class for handling
     * tesselated Polygon Mesh fonts
     *
     * @see		FTFont
     */
    class	FTGLPolygonFont : public FTFont
    {
    	public:
    		// methods
    		FTGLPolygonFont();
    		~FTGLPolygonFont();
    		
    		// attributes
    		
    	private:
    		// methods
    		bool MakeGlyphList();
    		
    		// attributes
    		FTPolyGlyph* tempGlyph;
    
    		
    };
    #endif	//	__FTGLPolygonFont__