Bugfix: removed error when filling small regions
This commit is contained in:
parent
2ba513bdb2
commit
313f77ee59
@ -122,7 +122,7 @@ sub make_fill {
|
|||||||
flow_ratio => $flow_ratio * ($params->{flow_ratio} || 1),
|
flow_ratio => $flow_ratio * ($params->{flow_ratio} || 1),
|
||||||
), @paths,
|
), @paths,
|
||||||
],
|
],
|
||||||
);
|
) if @paths;
|
||||||
###$layer->fills->[-1]->cleanup;
|
###$layer->fills->[-1]->cleanup;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -43,7 +43,7 @@ sub fill_surface {
|
|||||||
my $polyline = Slic3r::Polyline->cast([
|
my $polyline = Slic3r::Polyline->cast([
|
||||||
map [ map {$_*$distance_between_lines} $path->n_to_xy($_) ], @n,
|
map [ map {$_*$distance_between_lines} $path->n_to_xy($_) ], @n,
|
||||||
]);
|
]);
|
||||||
return [] if !@{$polyline->points};
|
return {} if !@{$polyline->points};
|
||||||
|
|
||||||
$self->process_polyline($polyline, $bounding_box);
|
$self->process_polyline($polyline, $bounding_box);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user