Blame Lib/fontTools/ttLib/tables/_a_n_k_r.py

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