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


# https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6morx.html
class table__m_o_r_x(BaseTTXConverter):
    """The AAT ``morx`` table contains glyph transformations used for script shaping and
    for various other optional smart features, akin to ``GSUB`` and ``GPOS`` features
    in OpenType Layout.

    Note: ``morx`` is a replacement for the now deprecated ``mort`` table.

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

    pass