Home
last modified time | relevance | path

Searched refs:glyphSelector (Results 1 – 1 of 1) sorted by relevance

/external/fonttools/Lib/fontTools/ttLib/tables/
DV_O_R_G_.py94 def __getitem__(self, glyphSelector): argument
95 if isinstance(glyphSelector, int):
97 glyphSelector = self.getGlyphName(glyphSelector)
99 if glyphSelector not in self.VOriginRecords:
102 return self.VOriginRecords[glyphSelector]
104 def __setitem__(self, glyphSelector, value): argument
105 if isinstance(glyphSelector, int):
107 glyphSelector = self.getGlyphName(glyphSelector)
110 self.VOriginRecords[glyphSelector] = value
111 elif glyphSelector in self.VOriginRecords:
[all …]