Bugfix: some infill paths were not connected. #477

This commit is contained in:
Alessandro Ranellucci 2012-06-23 20:27:28 +02:00
parent ac08cf7469
commit 53d24bc580

View File

@ -67,13 +67,13 @@ sub fill_surface {
my $can_connect = $is_line_pattern
? sub {
($_[X] >= ($distance_between_lines - $line_oscillation) - $tolerance) && ($_[X] <= ($distance_between_lines + $line_oscillation) + $tolerance)
&& abs($_[Y]) <= $diagonal_distance
&& $_[Y] <= $diagonal_distance
}
: sub { abs($_[X] - $distance_between_lines) <= $tolerance && abs($_[Y]) <= $diagonal_distance };
: sub { abs($_[X]) - $distance_between_lines <= $tolerance && $_[Y] <= $diagonal_distance };
foreach my $path ($collection->shortest_path) {
if (@paths) {
my @distance = map +($path->points->[0][$_] - $paths[-1][-1][$_]), (X,Y);
my @distance = map abs($path->points->[0][$_] - $paths[-1][-1][$_]), (X,Y);
# TODO: we should also check that both points are on a fill_boundary to avoid
# connecting paths on the boundaries of internal regions