2017-08-17 18:52:21 +02:00
|
|
|
from .otBase import BaseTTXConverter
|
|
|
|
|
|
|
|
|
|
|
|
# https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6prop.html
|
|
|
|
class table__p_r_o_p(BaseTTXConverter):
|
2024-12-04 15:58:46 +00:00
|
|
|
"""The AAT ``prop`` table can store a variety of per-glyph properties, such as
|
|
|
|
Unicode directionality or whether glyphs are non-spacing marks.
|
|
|
|
|
|
|
|
See also https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6prop.html
|
|
|
|
"""
|
|
|
|
|
2017-08-17 18:52:21 +02:00
|
|
|
pass
|