fixed formatting

This commit is contained in:
justvanrossum 2020-11-09 15:39:21 +01:00
parent 0ae6951b3b
commit 186032cb10

View File

@ -715,8 +715,8 @@ def calcCubicParameters(pt1, pt2, pt3, pt4):
x3, y3 = pt3
x4, y4 = pt4
dx, dy = pt1
cx = (x2 -dx) * 3.0
cy = (y2 -dy) * 3.0
cx = (x2 - dx) * 3.0
cy = (y2 - dy) * 3.0
bx = (x3 - x2) * 3.0 - cx
by = (y3 - y2) * 3.0 - cy
ax = x4 - dx - cx - bx