aether9
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

patt-story.txt
text/plain

Download raw (221 bytes)

from random import choice

patts = ["Patt0","Patt1","Patt2"]
font = fontforge.activeFont()

for glyph in font.glyphs():
 font.selection.select(choice(patts))  
 font.copy()
 font.selection.select(glyph)
 font.pasteInto()