mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-14 04:35:54 +08:00
Fix initialization of Rectilinear filler
This commit is contained in:
parent
c46bfc71b4
commit
312bb285a0
@ -269,7 +269,10 @@ sub make_perimeters {
|
|||||||
|
|
||||||
# fill gaps
|
# fill gaps
|
||||||
if ($Slic3r::Config->gap_fill_speed > 0 && $Slic3r::Config->fill_density > 0 && @gaps) {
|
if ($Slic3r::Config->gap_fill_speed > 0 && $Slic3r::Config->fill_density > 0 && @gaps) {
|
||||||
my $filler = Slic3r::Fill::Rectilinear->new(layer_id => $self->layer->id);
|
my $filler = Slic3r::Fill::Rectilinear->new(
|
||||||
|
bounding_box => [ $self->layer->object->print->bounding_box ],
|
||||||
|
layer_id => $self->layer->id,
|
||||||
|
);
|
||||||
|
|
||||||
# we should probably use this code to handle thin walls and remove that logic from
|
# we should probably use this code to handle thin walls and remove that logic from
|
||||||
# make_surfaces(), but we need to enable dynamic extrusion width before as we can't
|
# make_surfaces(), but we need to enable dynamic extrusion width before as we can't
|
||||||
|
Loading…
x
Reference in New Issue
Block a user