Small fix for path intersections
This commit is contained in:
parent
adbdc6d218
commit
65bfeb6ea8
@ -248,9 +248,8 @@ class IntersectionChecker(Checker):
|
|||||||
subpaths.append(raw[prev:])
|
subpaths.append(raw[prev:])
|
||||||
seg = []
|
seg = []
|
||||||
for simpath in subpaths:
|
for simpath in subpaths:
|
||||||
closed = False
|
|
||||||
if simpath[-1][0] == 'Z':
|
if simpath[-1][0] == 'Z':
|
||||||
closed = True
|
simpath[-1][0] = 'L'
|
||||||
if simpath[-2][0] == 'L': simpath[-1][1] = simpath[0][1]
|
if simpath[-2][0] == 'L': simpath[-1][1] = simpath[0][1]
|
||||||
else: simpath.pop()
|
else: simpath.pop()
|
||||||
for i in range(len(simpath)):
|
for i in range(len(simpath)):
|
||||||
|
Reference in New Issue
Block a user