mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-11-02 20:51:23 -07:00
Bugfix: fatal error for some models and thin walls not considered for skirt
This commit is contained in:
parent
1c7564e4a4
commit
f08ebe97b2
2 changed files with 2 additions and 1 deletions
|
|
@ -330,7 +330,7 @@ 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 }, @layers;
|
||||
my @points = map @$_, map $_->p, map +(@{$_->slices}, @{$_->thin_walls}), @layers;
|
||||
return if !@points;
|
||||
|
||||
# find out convex hull
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue