From 60ca76ff0551f35aebae5b9aebd94446d1f0efac Mon Sep 17 00:00:00 2001 From: Mark Hindess Date: Sun, 1 Jul 2012 22:35:52 +0000 Subject: [PATCH] Oops. Somehow I missed this when doing interactive add. --- lib/Slic3r/Polyline.pm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/Slic3r/Polyline.pm b/lib/Slic3r/Polyline.pm index 2c3f9f88c..caef9beee 100644 --- a/lib/Slic3r/Polyline.pm +++ b/lib/Slic3r/Polyline.pm @@ -5,7 +5,7 @@ use warnings; use Math::Clipper qw(); use Scalar::Util qw(reftype); use Slic3r::Geometry qw(A B polyline_remove_parallel_continuous_edges polyline_remove_acute_vertices - move_points same_point); + polyline_lines move_points same_point); # the constructor accepts an array(ref) of points sub new { @@ -61,15 +61,12 @@ sub boost_linestring { sub merge_continuous_lines { my $self = shift; - polyline_remove_parallel_continuous_edges($self); - bless $_, 'Slic3r::Point' for @$self; } sub remove_acute_vertices { my $self = shift; polyline_remove_acute_vertices($self); - bless $_, 'Slic3r::Point' for @$self; } sub simplify {