Add endPath method to TransformPen

I think this was just forgotten before.
This commit is contained in:
James Godfrey-Kittle 2015-11-06 11:25:48 -08:00
parent 9ff7d62454
commit 981ad5978c

View File

@ -51,6 +51,9 @@ class TransformPen(AbstractPen):
def closePath(self):
self._outPen.closePath()
def endPath(self):
self._outPen.endPath()
def addComponent(self, glyphName, transformation):
transformation = self._transformation.transform(transformation)
self._outPen.addComponent(glyphName, transformation)