morphologic
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

zz-finalise-font.py
text/x-python

Download raw (200 bytes)

from robofab.world import RFont
font = RFont('Morphologic.ufo')

for glyph in font:
    if glyph.isEmpty() != True:
        minX,minY,maxX,maxY = glyph.box
        glyph.width = maxX+minX

font.save()