From ea07ab6f108f4ec4af3fec43104e0467e206b92e Mon Sep 17 00:00:00 2001 From: Stefan Siegl Date: Fri, 26 Dec 2014 23:26:06 +0100 Subject: Handle closed paths --- embroider.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'embroider.py') diff --git a/embroider.py b/embroider.py index c9c30039..e5bf2501 100644 --- a/embroider.py +++ b/embroider.py @@ -615,11 +615,14 @@ class Embroider(inkex.Effect): emb_point_list = [] for (type,points) in path: - dbg.write("path_to_patch_list parses pt %s\n" % points) - pointscopy = list(points) - while (len(pointscopy)>0): - emb_point_list.append(PyEmb.Point(pointscopy[0], pointscopy[1])) - pointscopy = pointscopy[2:] + dbg.write("path_to_patch_list parses pt %s with type=%s\n" % (points, type)) + if type == 'Z': + emb_point_list.append(emb_point_list[0]) + else: + pointscopy = list(points) + while (len(pointscopy)>0): + emb_point_list.append(PyEmb.Point(pointscopy[0], pointscopy[1])) + pointscopy = pointscopy[2:] STROKE_MIN = 0.5 # a 0.5pt stroke becomes a straight line. if (stroke_width <= STROKE_MIN): -- cgit v1.2.3