From f9febbd85ebf33de72d016de50e4ec43b97fda0d Mon Sep 17 00:00:00 2001 From: Andrew Port Date: Tue, 1 Dec 2020 22:38:41 -0800 Subject: [PATCH] minor, 2/360 -> 180 --- svgpathtools/path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svgpathtools/path.py b/svgpathtools/path.py index b0f462f..855a309 100644 --- a/svgpathtools/path.py +++ b/svgpathtools/path.py @@ -1737,7 +1737,7 @@ class Arc(object): phi = radians(self.rotation) rx = self.radius.real ry = self.radius.imag - k = (self.delta*2*pi/360)**n # ((d/dt)angle)**n + k = (self.delta*pi/180)**n # ((d/dt)angle)**n if n % 4 == 0 and n > 0: return rx*cos(phi)*cos(angle) - ry*sin(phi)*sin(angle) + 1j*(