From a7c36846c0e88ef946a4c4110e2a40e47a4e5c40 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Tue, 1 May 2012 15:36:07 +0200 Subject: [PATCH] Require Math::Clipper 1.07 which includes the fix for #233 --- Build.PL | 2 +- lib/Slic3r/Geometry/Clipper.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Build.PL b/Build.PL index 3652a080d..b6c865f07 100644 --- a/Build.PL +++ b/Build.PL @@ -10,7 +10,7 @@ my $build = Module::Build->new( 'Boost::Geometry::Utils' => '0', 'File::Basename' => '0', 'Getopt::Long' => '0', - 'Math::Clipper' => '1.05', + 'Math::Clipper' => '1.07', 'Math::ConvexHull' => '1.0.4', 'Math::Geometry::Voronoi' => '1.3', 'Math::PlanePath' => '53', diff --git a/lib/Slic3r/Geometry/Clipper.pm b/lib/Slic3r/Geometry/Clipper.pm index 46f7f0d87..3445edcb3 100644 --- a/lib/Slic3r/Geometry/Clipper.pm +++ b/lib/Slic3r/Geometry/Clipper.pm @@ -8,7 +8,7 @@ our @EXPORT_OK = qw(explode_expolygon explode_expolygons safety_offset offset diff_ex diff union_ex intersection_ex xor_ex PFT_EVENODD JT_MITER JT_ROUND is_counter_clockwise); -use Math::Clipper 1.05 ':all'; +use Math::Clipper 1.07 ':all'; use Slic3r::Geometry qw(scale); our $clipper = Math::Clipper->new;