[interpolatable] Remove stale commit and uncomment code

This commit is contained in:
Behdad Esfahbod 2017-02-20 13:40:20 -06:00
parent c2263c2e8f
commit 65e5c257ed

View File

@ -55,10 +55,8 @@ class RecordingPen(BasePen):
self.value.append(('closePath', ())) self.value.append(('closePath', ()))
def _endPath(self): def _endPath(self):
self.value.append(('endPath', ())) self.value.append(('endPath', ()))
# Humm, adding the following method slows things down some 20%. def addComponent(self, glyphName, transformation):
# We don't have as much control as we like currently. self.value.append(('addComponent', (glyphName, transformation)))
#def addComponent(self, glyphName, transformation):
# self.value.append(('addComponent', (glyphName, transformation)))
def draw(self, pen): def draw(self, pen):
for operator,operands in self.value: for operator,operands in self.value: