Skip to content

Commit

Permalink
Fix for call to ClipperLib.PolyFillType
Browse files Browse the repository at this point in the history
  • Loading branch information
caewok committed Jun 11, 2024
1 parent 9e01bf8 commit f652610
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ClipperPaths.js
Original file line number Diff line number Diff line change
Expand Up @@ -330,8 +330,8 @@ export class ClipperPaths {
c.AddPaths(this.paths, ClipperLib.PolyType.ptSubject, true);
c.Execute(ClipperLib.ClipType.ctUnion,
union.paths,
ClipperLib.PolyFillType.ClipperLib.PolyFillType.pftNonZero,
ClipperLib.PolyFillType.ClipperLib.PolyFillType.pftNonZero
ClipperLib.PolyFillType.pftNonZero,
ClipperLib.PolyFillType.pftNonZero
);
return union;
}
Expand Down

0 comments on commit f652610

Please sign in to comment.