blob: cf4a5dd24f27ab08082cf9976bc2f5a9e1a967a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
from fontTools import ttLib
superclass = ttLib.getTableClass("fpgm")
class table__p_r_e_p(superclass):
"""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
"""
pass
|