Skip to content

Commit

Permalink
fix api
Browse files Browse the repository at this point in the history
  • Loading branch information
msbarry committed Nov 3, 2024
1 parent b318669 commit eccd373
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ private static String timeLoop(int lines, int parts) {
return time(lines, parts, geom -> {
var merger = new LoopLineMerger();
merger.add(geom);
return merger.getMergedLineStrings(0.1, 0.1);
merger.setLoopMinLength(0.1);
merger.setMinLength(0.1);
return merger.getMergedLineStrings();
});
}

Expand Down

0 comments on commit eccd373

Please sign in to comment.