Home
last modified time | relevance | path

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

/external/fonttools/Lib/fontTools/feaLib/
Dast.py518 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))
Dparser.py179 contourPoints = {self.expect_number_()}
181 contourPoints.add(self.expect_number_())
183 return self.ast.AttachStatement(glyphs, contourPoints,
Dbuilder.py792 def add_attach_points(self, location, glyphs, contourPoints): argument
794 self.attachPoints_.setdefault(glyph, set()).update(contourPoints)
/external/fonttools/Tests/feaLib/
Dparser_test.py207 self.assertEqual(s.contourPoints, {2})