2017-08-17 22:32:06 +02:00
|
|
|
from .otBase import BaseTTXConverter
|
|
|
|
|
|
|
|
|
|
|
|
# https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6opbd.html
|
|
|
|
class table__o_p_b_d(BaseTTXConverter):
|
2024-12-04 15:58:46 +00:00
|
|
|
"""Optical Bounds table
|
|
|
|
|
|
|
|
The AAT ``opbd`` table contains optical boundary points for glyphs, which
|
|
|
|
applications can use for the visual alignment of lines of text.
|
|
|
|
|
|
|
|
See also https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6opbd.html
|
|
|
|
"""
|
|
|
|
|
2017-08-17 22:32:06 +02:00
|
|
|
pass
|