From 7389bf3953c52172beeca0fce646bcaaa68df187 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Mon, 23 Dec 2013 20:40:44 +0100 Subject: [PATCH] Partially revert cacbaa73191d967e7aa589f4f07df32039de2f43: no need for it in master branch --- lib/Slic3r/ExPolygon.pm | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/Slic3r/ExPolygon.pm b/lib/Slic3r/ExPolygon.pm index 10853dc271..536ea3f94f 100644 --- a/lib/Slic3r/ExPolygon.pm +++ b/lib/Slic3r/ExPolygon.pm @@ -203,9 +203,6 @@ sub _medial_axis_voronoi { } } - # apply Douglas-Peucker to straighten paths - @result = map $_->simplify($width / 7), @result; - return @result; }