aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/fonttools/fontTools/ttLib/tables/_g_c_i_d.py
blob: 9d6d6ae425384b47613c146d567847c00660a5cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
from .otBase import BaseTTXConverter


# https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6gcid.html
class table__g_c_i_d(BaseTTXConverter):
    """Glyph ID to CID table

    The AAT ``gcid`` table stores glyphID-to-CID mappings.

    See also https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6gcid.html
    """

    pass