You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print a list of names of all glyphs that can be built from existing components in the current font.
g = Glyphs.font.glyphs
for i in GSGlyphsInfo.alloc().init().glyphInfos():
if i.components and http://i.name not in g and all(http://c.name in g for c in i.components):
print i.name
If we run this across all the .glyphs source files in the library and tabulate the results, cross referenced against language support character lists, we might find some 'low hanging fruit' language targets.
The text was updated successfully, but these errors were encountered:
g = Glyphs.font.glyphs
for i in GSGlyphsInfo.alloc().init().glyphInfos():
if i.components and i.name not in g and all(c.name in g for c in i.components):
print i.name
https://twitter.com/jenskutilek/status/1287420376998449157 shared this 5 line snippet for GlyphshApp to
If we run this across all the
.glyphs
source files in the library and tabulate the results, cross referenced against language support character lists, we might find some 'low hanging fruit' language targets.The text was updated successfully, but these errors were encountered: