morphologic
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

judika-zerrer.py
text/x-python

Download raw (309 bytes)

#!/usr/bin/env python

# Script to generate the n, by Judika Zerrer
from robofab.world import RFont
font = RFont('Morphologic.ufo')

try:
    glyph = font['n']
except KeyError:
    glyph = font.newGlyph('n')

pen = glyph.getPen()

# ! Drawing instructions here !
# ! Otherwise nothing happens !

font.save()