* glyph and add contours afterwards. Alternatively, you can call
* getGlyph(char c) to retrieve it.
*/
public FGlyph addGlyph(char c, FContour[] contours) {
FGlyph glyph = new FGlyph(c);
glyphs.add(glyph);
if (debug)
System.out.println("Glyph " + c + " added. Number of glyphs: "
+ glyphs.size());
for (FContour contour : contours) {
// if (debug) System.out.println(p.x + " - " + p.y);
glyph.addContour(contour);
}
glyph.setAdvanceWidth(advanceWidth);
return glyph;
}