The AAT baseline table uses arrays whose length is constant instead of getting encoded in the data. Extended otBase to support such arrays.
9 lines
269 B
Python
9 lines
269 B
Python
from __future__ import print_function, division, absolute_import
|
|
from fontTools.misc.py23 import *
|
|
from .otBase import BaseTTXConverter
|
|
|
|
|
|
# https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6bsln.html
|
|
class table__b_s_l_n(BaseTTXConverter):
|
|
pass
|