1languagesystem DFLT dflt; 2 3# Mixes kerning between single glyphs, and class-based kerning. 4# https://github.com/fonttools/fonttools/issues/456 5lookup MixedKerning { 6 pos v v 14; 7 pos [D O Q] [T V W] -26; 8} MixedKerning; 9 10lookup GlyphKerning { 11 pos T one 100; 12 pos T two 200; 13 pos T two.oldstyle 200; 14 pos T three 300; 15 pos T four 400; 16 pos X a 100; 17 pos X b 200; 18 pos Y a 100; 19 pos Y b 200; 20 pos Y c <3 3 3 3>; 21} GlyphKerning; 22 23feature kern { 24 lookup GlyphKerning; 25 lookup MixedKerning; 26} kern; 27 28feature vkrn { 29 pos T one 100; 30} vkrn; 31