From 8030eaaa04a98ad1a3d5711a4567b7106d3113db Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Tue, 9 Apr 2013 14:02:49 +0200 Subject: [PATCH] Remove debugging statements --- t/fill.t | 5 ----- 1 file changed, 5 deletions(-) diff --git a/t/fill.t b/t/fill.t index 7cc1e5d3..cbffd7da 100644 --- a/t/fill.t +++ b/t/fill.t @@ -39,11 +39,6 @@ sub scale_points (@) { map [scale $_->[X], scale $_->[Y]], @_ } $surface->expolygon->rotate(Slic3r::Geometry::deg2rad($angle), [0,0]); my ($params, @paths) = $filler->fill_surface($surface, flow_spacing => 0.69, density => 0.4); is scalar @paths, 1, 'one continuous path'; - use Slic3r::SVG; - Slic3r::SVG::output("fill.svg", - expolygons => [$surface->expolygon], - polylines => [@paths], - );exit; } }