From 1719483738c708818b896bac7b28538f3acfc5cd Mon Sep 17 00:00:00 2001 From: sliptonic Date: Sun, 15 Oct 2017 15:32:50 -0500 Subject: [PATCH] Path: fix bug in polar array --- src/Mod/Path/PathScripts/PathArray.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Path/PathScripts/PathArray.py b/src/Mod/Path/PathScripts/PathArray.py index 2a0c3849fc..14938ea4a5 100644 --- a/src/Mod/Path/PathScripts/PathArray.py +++ b/src/Mod/Path/PathScripts/PathArray.py @@ -200,7 +200,7 @@ class ObjectArray: for i in range(obj.Copies): ang = 360 - if obj.CopiesPolar > 0: + if obj.Copies > 0: ang = obj.Angle / obj.Copies * (1 + i) np = self.rotatePath(basepath, ang, obj.Centre)