2000-02-01 15:31:18 +00:00
|
|
|
from fontTools import ttLib
|
|
|
|
|
|
|
|
superclass = ttLib.getTableClass("fpgm")
|
|
|
|
|
2022-12-13 11:26:36 +00:00
|
|
|
|
2000-02-01 15:31:18 +00:00
|
|
|
class table__p_r_e_p(superclass):
|
2024-12-04 15:58:46 +00:00
|
|
|
"""Control Value Program table
|
|
|
|
|
|
|
|
The ``prep`` table contains TrueType instructions that can makee font-wide
|
|
|
|
alterations to the Control Value Table. It may potentially be executed
|
|
|
|
before any glyph is processed.
|
|
|
|
|
|
|
|
See also https://learn.microsoft.com/en-us/typography/opentype/spec/prep
|
|
|
|
"""
|
|
|
|
|
2000-02-01 15:31:18 +00:00
|
|
|
pass
|