From 6070a471f114ed641106a74b3e5c61ee7e480eb8 Mon Sep 17 00:00:00 2001 From: Rasmus Andersson Date: Tue, 28 Aug 2018 11:40:40 -0700 Subject: fixes issue with recent numpy upgrade --- misc/pylib/fontbuild/curveFitPen.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'misc/pylib/fontbuild') 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]]) -- cgit v1.2.3