Home
last modified time | relevance | path

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

/external/fonttools/Lib/fontTools/feaLib/
Dast.py686 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)
Dparser.py225 contourPoints = {self.expect_number_()}
227 contourPoints.add(self.expect_number_())
229 return self.ast.AttachStatement(glyphs, contourPoints, location=location)
Dbuilder.py1129 def add_attach_points(self, location, glyphs, contourPoints): argument
1131 self.attachPoints_.setdefault(glyph, set()).update(contourPoints)
/external/fonttools/Tests/feaLib/
Dparser_test.py214 self.assertEqual(s.contourPoints, {2})