Improve documentation of FT_BBox.

This commit is contained in:
Werner Lemberg 2010-01-21 08:41:41 +01:00
parent 13fa21bd5e
commit b8f245bd77
1 changed files with 10 additions and 0 deletions

View File

@ -99,6 +99,16 @@ FT_BEGIN_HEADER
/* */
/* yMax :: The vertical maximum (top-most). */
/* */
/* <Note> */
/* The bounding box is specified with the coordinates of the lower */
/* left and the upper right corner. In PostScript, those values are */
/* often called (llx,lly) and (urx,ury), respectively. */
/* */
/* If `yMin' is negative, this value gives the glyph's descender. */
/* Otherwise, the glyph doesn't descend below the baseline. */
/* Similarly, if `ymax' is positive, this value gives the glyph's */
/* ascender. */
/* */
typedef struct FT_BBox_
{
FT_Pos xMin, yMin;