Blanket black formatting for Path python files

This commit is contained in:
Markus Lampert
2022-03-19 13:55:48 -07:00
committed by mlampert
parent 75e5dc95d5
commit 115fbd68bb
12 changed files with 23 additions and 14 deletions

View File

@@ -806,7 +806,7 @@ def RtoIJ(startpoint, command):
perp = chord.cross(Vector(0, 0, 1))
# use pythagoras to get the perp length
plength = math.sqrt(radius ** 2 - (chord.Length / 2) ** 2)
plength = math.sqrt(radius**2 - (chord.Length / 2) ** 2)
perp.normalize()
perp.scale(plength, plength, plength)