Bugfix: very wrong infill for low density regions. #127

This commit is contained in:
Alessandro Ranellucci 2011-12-19 09:55:03 +01:00
parent 65a018f156
commit 4af295bce3
2 changed files with 16 additions and 10 deletions

View file

@ -18,11 +18,14 @@ sub fill_surface {
my $min_spacing = scale $params{flow_spacing};
my $distance = $min_spacing / $params{density};
$distance = $self->adjust_solid_spacing(
width => $bounding_box->[X2] - $bounding_box->[X1],
distance => $distance,
) if $params{density} == 1;
my $flow_spacing = unscale $distance;
my $flow_spacing;
if ($params{density} == 1) {
$distance = $self->adjust_solid_spacing(
width => $bounding_box->[X2] - $bounding_box->[X1],
distance => $distance,
);
$flow_spacing = unscale $distance;
}
my @contour_loops = ();
my @hole_loops = ();