public TFontGlyphMetrics(TFontGlyphMetrics m)
 {
     this.width    = m.width;
     this.height   = m.height;
     this.xOffset  = m.xOffset;
     this.yOffset  = m.yOffset;
     this.xAdvance = m.xAdvance;
 }
 public TFontGlyph(Rect rect, float width, float height, float xOffset, float yOffset, float xAdvance)
 {
     this.rect = rect;
     metrics   = new TFontGlyphMetrics(width, height, xOffset, yOffset, xAdvance);
 }