Exemplo n.º 1
0
 public SvgFontDefn (SvgFont font, float size, float ppi)
 {
     _font = font;
     _size = size;
     _ppi = ppi;
     var face = _font.Children.OfType<SvgFontFace>().First();
     _emScale = _size / face.UnitsPerEm;
 }
Exemplo n.º 2
0
        public SvgFontDefn(SvgFont font, float size, float ppi)
        {
            _font = font;
            _size = size;
            _ppi  = ppi;
            var face = _font.Children.OfType <SvgFontFace>().First();

            _emScale = _size / face.UnitsPerEm;
        }