Searched refs:contourPoints (Results 1 – 4 of 4) sorted by relevance
/external/fonttools/Lib/fontTools/feaLib/ |
D | ast.py | 518 def __init__(self, glyphs, contourPoints, location=None): argument 520 self.glyphs, self.contourPoints = (glyphs, contourPoints) 524 builder.add_attach_points(self.location, glyphs, self.contourPoints) 528 self.glyphs.asFea(), " ".join(str(c) for c in self.contourPoints))
|
D | parser.py | 179 contourPoints = {self.expect_number_()} 181 contourPoints.add(self.expect_number_()) 183 return self.ast.AttachStatement(glyphs, contourPoints,
|
D | builder.py | 792 def add_attach_points(self, location, glyphs, contourPoints): argument 794 self.attachPoints_.setdefault(glyph, set()).update(contourPoints)
|
/external/fonttools/Tests/feaLib/ |
D | parser_test.py | 207 self.assertEqual(s.contourPoints, {2})
|