Searched refs:contourPoints (Results 1 – 4 of 4) sorted by relevance
/external/fonttools/Lib/fontTools/feaLib/ |
D | ast.py | 686 def __init__(self, glyphs, contourPoints, location=None): argument 689 self.contourPoints = contourPoints #: A list of integer contour points 694 builder.add_attach_points(self.location, glyphs, self.contourPoints) 698 self.glyphs.asFea(), " ".join(str(c) for c in self.contourPoints)
|
D | parser.py | 225 contourPoints = {self.expect_number_()} 227 contourPoints.add(self.expect_number_()) 229 return self.ast.AttachStatement(glyphs, contourPoints, location=location)
|
D | builder.py | 1129 def add_attach_points(self, location, glyphs, contourPoints): argument 1131 self.attachPoints_.setdefault(glyph, set()).update(contourPoints)
|
/external/fonttools/Tests/feaLib/ |
D | parser_test.py | 214 self.assertEqual(s.contourPoints, {2})
|