mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-14 14:05:55 +08:00
External perimeter first on bottom layer when brim is enabled. #761
This commit is contained in:
parent
28b56ae840
commit
1445820673
@ -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…
x
Reference in New Issue
Block a user