[interpolatable] Minor
This commit is contained in:
parent
19e695775f
commit
69c11928a2
@ -44,6 +44,7 @@ def green(f, curveXY):
|
||||
f = sp.integrate(f * sp.diff(curveXY[0], t), (t, 0, 1))
|
||||
return f
|
||||
|
||||
|
||||
class _BezierFuncsLazy(dict):
|
||||
|
||||
def __init__(self, symfunc):
|
||||
|
@ -48,7 +48,7 @@ class PerContourOrComponentPen(PerContourPen):
|
||||
|
||||
|
||||
class RecordingNoComponentsPen(BasePen):
|
||||
def __init__(self, glyphset):
|
||||
def __init__(self, glyphset=None): # glyphset is unused
|
||||
BasePen.__init__(self, glyphset)
|
||||
self._glyphset = glyphset
|
||||
self.value = []
|
||||
@ -76,7 +76,7 @@ class RecordingPen(RecordingNoComponentsPen):
|
||||
|
||||
|
||||
class TeePen(object):
|
||||
def __init__(self, *pens):
|
||||
def __init__(self, *pens, glyphset=None): # glyphset is unused
|
||||
if len(pens) == 1:
|
||||
pens = pens[0]
|
||||
self.pens = pens
|
||||
|
Loading…
x
Reference in New Issue
Block a user