mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 09:17:52 -06:00
Removed chained_path_points()
This commit is contained in:
parent
0516aac715
commit
0045f84ed2
3 changed files with 5 additions and 10 deletions
|
@ -2,7 +2,7 @@ package Slic3r::Print::Object;
|
|||
use Moo;
|
||||
|
||||
use List::Util qw(min max sum first);
|
||||
use Slic3r::Geometry qw(X Y Z PI scale unscale deg2rad rad2deg scaled_epsilon chained_path_points);
|
||||
use Slic3r::Geometry qw(X Y Z PI scale unscale deg2rad rad2deg scaled_epsilon chained_path);
|
||||
use Slic3r::Geometry::Clipper qw(diff diff_ex intersection intersection_ex union union_ex
|
||||
offset offset_ex offset2 offset2_ex CLIPPER_OFFSET_SCALE JT_MITER);
|
||||
use Slic3r::Surface ':types';
|
||||
|
@ -85,7 +85,7 @@ sub _trigger_copies {
|
|||
return unless @{$self->copies} > 1;
|
||||
|
||||
# order copies with a nearest neighbor search
|
||||
@{$self->copies} = @{chained_path_points($self->copies)}
|
||||
@{$self->copies} = @{$self->copies}[@{chained_path($self->copies)}];
|
||||
}
|
||||
|
||||
sub init_config {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue