mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-19 19:33:47 +00:00
Fix planepath fill patterns for very small regions. #1463
This commit is contained in:
@@ -36,7 +36,7 @@ sub fill_surface {
|
|||||||
my $polyline = Slic3r::Polyline->new(
|
my $polyline = Slic3r::Polyline->new(
|
||||||
map [ map {$_*$distance_between_lines} $path->n_to_xy($_) ], @n,
|
map [ map {$_*$distance_between_lines} $path->n_to_xy($_) ], @n,
|
||||||
);
|
);
|
||||||
return {} if !@$polyline;
|
return {} if @$polyline <= 1;
|
||||||
|
|
||||||
$self->process_polyline($polyline, $bounding_box);
|
$self->process_polyline($polyline, $bounding_box);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user