mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-23 22:54:08 -06:00
Align rectilinear and line infill across layers (new implementation). #712
This commit is contained in:
parent
c723c07f8c
commit
430c825918
7 changed files with 57 additions and 51 deletions
|
@ -39,10 +39,9 @@ sub filler {
|
|||
return $FillTypes{$filler}->new;
|
||||
}
|
||||
|
||||
if (!$self->fillers->{$filler}) {
|
||||
my $f = $self->fillers->{$filler} = $FillTypes{$filler}->new;
|
||||
$f->bounding_box([ $self->print->bounding_box ]) if $f->can('bounding_box');
|
||||
}
|
||||
$self->fillers->{$filler} ||= $FillTypes{$filler}->new(
|
||||
bounding_box => [ $self->print->bounding_box ],
|
||||
);
|
||||
return $self->fillers->{$filler};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue