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)