Exemplo n.º 1
0
        internal Glyph(IntPtr reference, Library parentLibrary)
        {
            Reference = reference;

            this.parentLibrary = parentLibrary;
            parentLibrary.AddChildGlyph(this);
        }
Exemplo n.º 2
0
        internal Glyph(GlyphRec rec, Library parentLibrary)
        {
            this.rec = rec;

            this.parentLibrary = parentLibrary;
            parentLibrary.AddChildGlyph(this);
        }
Exemplo n.º 3
0
		internal Glyph(IntPtr reference, Library parentLibrary)
		{
			Reference = reference;

			this.parentLibrary = parentLibrary;
			parentLibrary.AddChildGlyph(this);
		}
Exemplo n.º 4
0
 internal Glyph(IntPtr reference, Library parentLibrary) : base(reference)
 {
     Library = parentLibrary;
     parentLibrary.AddChildGlyph(this);
 }