Commit bf72a828544e29c7845a3429bca213fd4fbd14ee

henry 2002-11-28T09:40:36

Changed FT_Vector for FTPoint

diff --git a/include/FTGlyph.h b/include/FTGlyph.h
index c2cd741..c5c1c19 100755
--- a/include/FTGlyph.h
+++ b/include/FTGlyph.h
@@ -18,6 +18,8 @@
  * must implement the <code>render</code> function. 
  * 
  * @see FTGlyphContainer
+ * @see FTBBox
+ * @see FTPoint
  *
  */
 class FTGL_EXPORT FTGlyph
@@ -71,10 +73,10 @@ class FTGL_EXPORT FTGlyph
         /**
          * Vector from the pen position to the topleft corner of the glyph
          */
-        FT_Vector pos;
+        FTPoint pos;
         
         /**
-         * A freetype bounding box
+         * The bounding box of this glyph.
          */
         FTBBox bBox;