Example #1
0
 internal TMP_GlyphAdjustmentRecord(GlyphAdjustmentRecord adjustmentRecord)
 {
     m_GlyphIndex       = adjustmentRecord.glyphIndex;
     m_GlyphValueRecord = new TMP_GlyphValueRecord(adjustmentRecord.glyphValueRecord);
 }
Example #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="glyphIndex">The index of the glyph in the source font file.</param>
 /// <param name="glyphValueRecord">The GlyphValueRecord contains the positional adjustments of the glyph.</param>
 public TMP_GlyphAdjustmentRecord(uint glyphIndex, TMP_GlyphValueRecord glyphValueRecord)
 {
     m_GlyphIndex       = glyphIndex;
     m_GlyphValueRecord = glyphValueRecord;
 }