From ac6b1f8e4da60396856eaf8f48df6e85e8daa760 Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Sun, 21 Nov 2021 03:16:41 -0600 Subject: [PATCH] more readable --- src/pixie/paths.nim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pixie/paths.nim b/src/pixie/paths.nim index dd264e9..ded5126 100644 --- a/src/pixie/paths.nim +++ b/src/pixie/paths.nim @@ -1176,7 +1176,8 @@ iterator walk( for i in 0 ..< numHits: let (at, winding) = hits[i] if windingRule == wrNonZero and - (count != 0) == (count + winding != 0) and + count != 0 and + count + winding != 0 and i < numHits - 1: # Shortcut: if nonzero rule, we only care about when the count changes # between zero and nonzero (or the last hit)