示例#1
0
        internal TextBuilderGlyph(ITexturedCharacterGlyph glyph, float textSize, float?fixedWidth = null)
        {
            this            = default;
            this.textSize   = textSize;
            this.fixedWidth = fixedWidth;

            Glyph = glyph;
        }
示例#2
0
 public GlyphEntry(FontUsage font, ITexturedCharacterGlyph glyph)
 {
     Font  = font;
     Glyph = glyph;
 }