Lines Matching refs:numPointsInGlyph
418 compilePoints = lambda p: TupleVariation.compilePoints(set(p), numPointsInGlyph=999)
440 numPointsInGlyph = 65536
441 allPoints = list(range(numPointsInGlyph))
443 … points, offset = TupleVariation.decompilePoints_(numPointsInGlyph, deHexStr(data), offset, "gvar")
482 numPointsInGlyph = 8
484 decompilePoints(numPointsInGlyph,
490 numPointsInGlyph = 500 # greater than 255, so we also exercise code path for 16-bit encoding
491 compile = lambda points: TupleVariation.compilePoints(points, numPointsInGlyph)
492 …decompile = lambda data: set(TupleVariation.decompilePoints_(numPointsInGlyph, data, 0, "gvar")[0])
494 points = set(random.sample(range(numPointsInGlyph), 30))
497 allPoints = set(range(numPointsInGlyph))