mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-23 22:54:08 -06:00
Better pruning of thin walls to avoid unwanted extra extrusions. Includes regression test. #1794
Conflicts: lib/Slic3r/Layer/Region.pm
This commit is contained in:
parent
a344d68257
commit
2295d48947
4 changed files with 74 additions and 5 deletions
|
@ -50,7 +50,7 @@ sub output {
|
|||
|
||||
my $g = $svg->group(
|
||||
style => {
|
||||
'stroke-width' => 2,
|
||||
'stroke-width' => 0,
|
||||
'stroke' => $colour || 'black',
|
||||
'fill' => ($type !~ /polygons/ ? 'none' : ($colour || 'grey')),
|
||||
'fill-type' => $filltype,
|
||||
|
@ -68,7 +68,7 @@ sub output {
|
|||
|
||||
my $g = $svg->group(
|
||||
style => {
|
||||
'stroke-width' => 2,
|
||||
'stroke-width' => ($method eq 'polyline') ? 1 : 0,
|
||||
'stroke' => $colour || 'black',
|
||||
'fill' => ($type !~ /polygons/ ? 'none' : ($colour || 'grey')),
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue