Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Ranellucci <aar@cpan.org>2011-09-26 00:11:56 +0400
committerAlessandro Ranellucci <aar@cpan.org>2011-09-26 00:11:56 +0400
commit03341f3485a86277d1c0610707d7020d247243ff (patch)
tree597fb364c177b1967c3072887e64ba1ee2122cc7 /lib/Slic3r/SVG.pm
parentf892fde123588f9ee0b3c206238a8094564eb2ef (diff)
Multiple solid layers near external surfaces
Diffstat (limited to 'lib/Slic3r/SVG.pm')
-rw-r--r--lib/Slic3r/SVG.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Slic3r/SVG.pm b/lib/Slic3r/SVG.pm
index b7c7e5199..67a4f9141 100644
--- a/lib/Slic3r/SVG.pm
+++ b/lib/Slic3r/SVG.pm
@@ -8,7 +8,7 @@ use constant X => 0;
use constant Y => 1;
sub factor {
- return $Slic3r::resolution * 10;
+ return $Slic3r::resolution * 100;
}
sub svg {
@@ -24,6 +24,7 @@ sub output_polygons {
my $g = $svg->group(
style => {
'stroke-width' => 2,
+ 'stroke' => 'black',
},
);
foreach my $polygon (@$polygons) {