blob: 3aa5f3f61ce694c10175c4d3a1d71b4bf96686f7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
"""IFT - Incremental Font Transfer table."""
# Reference: https://github.com/googlefonts/fontations/blob/main/read-fonts/src/tables/ift.rs
from .otBase import BaseTTXConverter
class table_I_F_T_(BaseTTXConverter):
"""Incremental Font Transfer table."""
pass
|