Iosevka/buildglyphs-final.patel

13 lines
No EOL
319 B
Text

### Zoom all glyphs
foreach glyph [items-of glyphList] : begin {
glyph.advanceWidth = glyph.advanceWidth * upmscale
if glyph.contours: foreach contour [items-of glyph.contours] : foreach point [items-of contour] : begin {
point.x = point.x * upmscale
point.y = point.y * upmscale
}
}
return font
}