From 580e36eb255629d5d0db24d49cebf9c8b9bccd86 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Thu, 15 Nov 2012 10:09:29 +0100 Subject: [PATCH] Raise offset scale factor back to 100000 now that Clipper was updated --- lib/Slic3r/Geometry/Clipper.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/Geometry/Clipper.pm b/lib/Slic3r/Geometry/Clipper.pm index af696be38..3382b9319 100644 --- a/lib/Slic3r/Geometry/Clipper.pm +++ b/lib/Slic3r/Geometry/Clipper.pm @@ -19,7 +19,7 @@ sub safety_offset { sub offset { my ($polygons, $distance, $scale, $joinType, $miterLimit) = @_; - $scale ||= 10000; + $scale ||= 100000; $joinType //= JT_MITER; $miterLimit //= 2;