Searched refs:glyfTable (Results 1 – 5 of 5) sorted by relevance
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | _g_l_y_f.py | 217 def compact(self, glyfTable, recalcBBoxes=True): argument 218 data = self.compile(glyfTable, recalcBBoxes) 222 def expand(self, glyfTable): argument 233 self.decompileComponents(data, glyfTable) 237 def compile(self, glyfTable, recalcBBoxes=True): argument 243 self.recalcBounds(glyfTable) 246 data = data + self.compileComponents(glyfTable) 328 def getCompositeMaxpValues(self, glyfTable, maxComponentDepth=1): argument 333 baseGlyph = glyfTable[compo.glyphName] 340 glyfTable, maxComponentDepth + 1) [all …]
|
D | _m_a_x_p.py | 61 glyfTable = ttFont['glyf'] 64 self.numGlyphs = len(glyfTable) 78 g = glyfTable[glyphName] 91 nPoints, nContours, componentDepth = g.getCompositeMaxpValues(glyfTable)
|
D | _h_h_e_a.py | 45 glyfTable = ttFont['glyf'] 55 g = glyfTable[name] 61 g.recalcBounds(glyfTable)
|
D | _v_h_e_a.py | 44 glyfTable = ttFont['glyf'] 52 g = glyfTable[name]
|
/external/fonttools/Lib/fontTools/ttLib/ |
D | __init__.py | 713 glyfTable = self._ttFont['glyf'] 714 glyph = glyfTable[self._glyphName] 724 coordinates, endPts, flags = glyph.getCoordinates(glyfTable)
|