Always use rectilinear infill for internal-solid surfaces

This commit is contained in:
Alessandro Ranellucci 2011-12-15 22:05:15 +01:00
parent 8e06a4f6f2
commit 172253cfd7

View File

@ -98,6 +98,8 @@ sub make_fill {
if ($is_bridge) { if ($is_bridge) {
$filler = 'rectilinear'; $filler = 'rectilinear';
$flow_width = sqrt($Slic3r::bridge_flow_ratio * ($Slic3r::nozzle_diameter**2)); $flow_width = sqrt($Slic3r::bridge_flow_ratio * ($Slic3r::nozzle_diameter**2));
} elsif ($surface->surface_type eq 'internal-solid') {
$filler = 'rectilinear';
} }
} else { } else {
next SURFACE unless $density > 0; next SURFACE unless $density > 0;