mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-23 22:54:08 -06:00
This commit is contained in:
parent
8ed91a8ec4
commit
0184b0f205
3 changed files with 9 additions and 6 deletions
|
@ -330,7 +330,10 @@ sub extrude_skirt {
|
|||
my $skirt_height = $Slic3r::skirt_height;
|
||||
$skirt_height = $self->layer_count if $skirt_height > $self->layer_count;
|
||||
my @layers = map $self->layer($_), 0..($skirt_height-1);
|
||||
my @points = map @$_, map $_->p, map +(@{$_->slices}, @{$_->thin_walls}), @layers;
|
||||
my @points = (
|
||||
(map @$_, map @{$_->expolygon}, map @{$_->slices}, @layers),
|
||||
(map @$_, map @{$_->thin_walls}, @layers),
|
||||
);
|
||||
return if !@points;
|
||||
|
||||
# find out convex hull
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue