summaryrefslogtreecommitdiff
path: root/misc/pylib
diff options
context:
space:
mode:
Diffstat (limited to 'misc/pylib')
-rw-r--r--misc/pylib/fontbuild/curveFitPen.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/pylib/fontbuild/curveFitPen.pyx b/misc/pylib/fontbuild/curveFitPen.pyx
index 307cf1abf..4b2ee4b34 100644
--- a/misc/pylib/fontbuild/curveFitPen.pyx
+++ b/misc/pylib/fontbuild/curveFitPen.pyx
@@ -388,7 +388,7 @@ def fitBezier(pts, tangent0=None, tangent3=None):
])
TT = np.concatenate((TT, tangentConstraintsT * 1000))
pout = np.concatenate((pout, tangentConstraintsP * 1000))
- C = np.linalg.lstsq(TT,pout)[0].reshape((2,2), rcond=-1)
+ C = np.linalg.lstsq(TT, pout, rcond=-1)[0].reshape((2,2))
return np.array([pts[0], C[0], C[1], pts[-1]])