Skip to content

Commit

Permalink
temporarily disable cleaning on open lines
Browse files Browse the repository at this point in the history
  • Loading branch information
casperlamboo committed Oct 5, 2017
1 parent abde14f commit 574072c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/sliceActions/shapesToSlices.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ export default function shapesToSlices(shapes, settings) {
lineShapesClosed = new Shape(lineShapesClosed, true, true, true, true)
.clean(1);

lineShapesOpen = new Shape(lineShapesOpen, false, true, true, true)
.clean(1);
lineShapesOpen = new Shape(lineShapesOpen, false, true, true, true);
// .clean(1);
// TODO
// Enable cleaning when https://sourceforge.net/p/jsclipper/tickets/24/ is fixed

const slice = new Slice();

Expand Down

0 comments on commit 574072c

Please sign in to comment.