External perimeter first on bottom layer when brim is enabled. #761
This commit is contained in:
parent
28b56ae840
commit
1445820673
1 changed files with 6 additions and 0 deletions
|
@ -276,6 +276,12 @@ sub make_perimeters {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# if brim will be printed, reverse the order of perimeters so that
|
||||||
|
# we continue inwards after having finished the brim
|
||||||
|
if ($self->layer->id == 0 && $Slic3r::Config->brim_width > 0) {
|
||||||
|
@{$self->perimeters} = reverse @{$self->perimeters};
|
||||||
|
}
|
||||||
|
|
||||||
# add thin walls as perimeters
|
# add thin walls as perimeters
|
||||||
{
|
{
|
||||||
my @thin_paths = ();
|
my @thin_paths = ();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue