From 85934e17383d2f326ec0e725c654816d9636762b Mon Sep 17 00:00:00 2001 From: Mike Sheldrake Date: Tue, 15 Jan 2013 22:13:11 -0800 Subject: [PATCH] use infill flow spacing, not perimeter, for combine_infill() clip offsets --- lib/Slic3r/Print/Object.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Slic3r/Print/Object.pm b/lib/Slic3r/Print/Object.pm index f85824961..01c71af45 100644 --- a/lib/Slic3r/Print/Object.pm +++ b/lib/Slic3r/Print/Object.pm @@ -509,8 +509,8 @@ sub combine_infill { # offset for the two different flow spacings $intersection = [ map $_->offset_ex( - $lower_layerm->perimeter_flow->scaled_spacing / 2 - + $layerm->perimeter_flow->scaled_spacing / 2 + $lower_layerm->infill_flow->scaled_spacing / 2 + + $layerm->infill_flow->scaled_spacing / 2 ), @$intersection]; foreach my $depth (1..$Slic3r::Config->infill_every_layers) {