1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-29 10:55:50 +00:00

Bugfix: make_perimeters() was not truly idempotent because prepare_infill() split ->slices into typed surfaces

This commit is contained in:
Alessandro Ranellucci
2014-07-15 19:07:38 +02:00
parent 28f9278963
commit d9f5fdae72
6 changed files with 38 additions and 3 deletions
+5
View File
@@ -57,6 +57,11 @@ sub make_slices {
$self->slices->append(@$slices);
}
sub merge_slices {
my ($self) = @_;
$_->merge_slices for @{$self->regions};
}
sub make_perimeters {
my $self = shift;
Slic3r::debugf "Making perimeters for layer %d\n", $self->id;