Reduce overlap for bridges. #1090

This commit is contained in:
Alessandro Ranellucci 2013-05-16 12:34:24 +02:00
parent 55071e544f
commit 521d668712
2 changed files with 2 additions and 1 deletions

View file

@ -97,7 +97,7 @@ sub _build_width {
sub _build_spacing {
my $self = shift;
my $width = $self->width;
return $width + &Slic3r::OVERLAP_FACTOR * ($width * PI / 4 - $width);
return $width - (&Slic3r::BRIDGE_OVERLAP_FACTOR * $width);
}
1;