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-11-27 14:40:03 +0400
committerAlessandro Ranellucci <aar@cpan.org>2011-11-30 19:07:31 +0400
commitd51a37a0ae1d27f2336e97284fb5852f0f204e4a (patch)
tree497827cca01eeccbf541abd483962c7412bc62e7 /lib/Slic3r/SVG.pm
parent15d060019ff07bfde42ed742053efd7feb54c5cf (diff)
Refactoring: moved slicing code to new TriangleMesh class, leaving in STL just what's needed to read that particular input format. Slic3r will now warn if model is not manifold. #16
Diffstat (limited to 'lib/Slic3r/SVG.pm')
-rw-r--r--lib/Slic3r/SVG.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Slic3r/SVG.pm b/lib/Slic3r/SVG.pm
index f1bdb932b..65921b23e 100644
--- a/lib/Slic3r/SVG.pm
+++ b/lib/Slic3r/SVG.pm
@@ -46,7 +46,7 @@ sub output {
my $g = $svg->group(
style => {
'stroke-width' => 2,
- 'stroke' => 'black' || $colour || 'black',
+ 'stroke' => $colour || 'black',
'fill' => ($type !~ /polygons/ ? 'none' : ($colour || 'grey')),
},
);