11 lines
181 B
Python
11 lines
181 B
Python
|
# robothon06
|
||
|
# get a particular glyph
|
||
|
|
||
|
from robofab.world import CurrentFont
|
||
|
font = CurrentFont()
|
||
|
print font['A']
|
||
|
print font['Adieresis']
|
||
|
print font['two']
|
||
|
print font['afii12934']
|
||
|
|