Exemplo n.º 1
0
        public static GlyphIndices.GlyphMapping[] Parse(string indices)
        {
            GlyphIndicesParser parser = new GlyphIndicesParser(indices);

            return(parser.Parse());
        }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Glyphs"/> class.
 /// </summary>
 public GlyphIndices(string indices)
 {
     this.glyphMapping = GlyphIndicesParser.Parse(indices);
 }
Exemplo n.º 3
0
 public static GlyphIndices.GlyphMapping[] Parse(string indices)
 {
   GlyphIndicesParser parser = new GlyphIndicesParser(indices);
   return parser.Parse();
 }