• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1""" TSI{0,1,2,3,5} are private tables used by Microsoft Visual TrueType (VTT)
2tool to store its hinting source data.
3
4TSI2 is the index table containing the lengths and offsets for the glyph
5programs that are contained in the TSI3 table. It uses the same format as
6the TSI0 table.
7"""
8from fontTools import ttLib
9
10superclass = ttLib.getTableClass("TSI0")
11
12class table_T_S_I__2(superclass):
13
14	dependencies = ["TSI3"]
15