14 lines
248 B
Python
14 lines
248 B
Python
|
#FLM: Print kerning
|
||
|
|
||
|
from robofab.world import CurrentFont
|
||
|
|
||
|
myFont = CurrentFont()
|
||
|
myKerning = myFont.kerning
|
||
|
|
||
|
print ""
|
||
|
|
||
|
for myPair in myKerning:
|
||
|
myComb = str(myPair).split()
|
||
|
myComb = "hh/%s/%s" %(myComb[0][2:-2], myComb[1][1:-2])
|
||
|
print myComb,
|