mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-25 15:44:12 -06:00
Use concentric infill for internal bridges. #240
This commit is contained in:
parent
0eecf33198
commit
0df8398a39
1 changed files with 3 additions and 1 deletions
|
@ -120,7 +120,9 @@ sub make_fill {
|
||||||
$density = 1;
|
$density = 1;
|
||||||
$filler = $Slic3r::Config->solid_fill_pattern;
|
$filler = $Slic3r::Config->solid_fill_pattern;
|
||||||
if ($is_bridge) {
|
if ($is_bridge) {
|
||||||
$filler = 'rectilinear';
|
$filler = $surface->surface_type == S_TYPE_INTERNALBRIDGE
|
||||||
|
? 'concentric'
|
||||||
|
: 'rectilinear';
|
||||||
$flow_spacing = $layerm->extruders->{infill}->bridge_flow->spacing;
|
$flow_spacing = $layerm->extruders->{infill}->bridge_flow->spacing;
|
||||||
} elsif ($surface->surface_type == S_TYPE_INTERNALSOLID) {
|
} elsif ($surface->surface_type == S_TYPE_INTERNALSOLID) {
|
||||||
$filler = 'rectilinear';
|
$filler = 'rectilinear';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue