Skip to content

Commit

Permalink
Fixed order of computeFields recomputations; fixes #124 (#125)
Browse files Browse the repository at this point in the history
Co-authored-by: Alexander Milevski <[email protected]>
  • Loading branch information
bluenote10 and w8r committed Jul 18, 2022
1 parent 64d646d commit a2eb903
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/subdivide_segments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default function subdivide(
possibleIntersection(event, next.key as SweepEvent, eventQueue) === 2
) {
computeFields(event, prevEvent, operation);
computeFields(event, next.key as SweepEvent, operation);
computeFields(next.key as SweepEvent, event, operation);
}
}

Expand Down

0 comments on commit a2eb903

Please sign in to comment.