1 from __future__ import print_function, division, absolute_import 2 from fontTools.misc.py23 import * 3 from .otBase import BaseTTXConverter 4 5 6 # The anchor point table provides a way to define anchor points. 7 # These are points within the coordinate space of a given glyph, 8 # independent of the control points used to render the glyph. 9 # Anchor points are used in conjunction with the 'kerx' table. 10 # 11 # https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6ankr.html 12 class table__a_n_k_r(BaseTTXConverter): 13 pass 14