Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Ranellucci <aar@cpan.org>2013-11-20 14:35:58 +0400
committerAlessandro Ranellucci <aar@cpan.org>2013-11-20 14:35:58 +0400
commit50c0081d2577499d60436b22bb1cb9829f05cece (patch)
treeffc1c97718b43b04a4eb18cc10a660b17a539eee /t/geometry.t
parentd49052779fafbc60d8b6b32cb3559f4882d263d1 (diff)
Update Clipper to 6.0.0
Diffstat (limited to 't/geometry.t')
-rw-r--r--t/geometry.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/geometry.t b/t/geometry.t
index 643900c1d..5b16e6cbd 100644
--- a/t/geometry.t
+++ b/t/geometry.t
@@ -187,7 +187,7 @@ is Slic3r::Geometry::can_connect_points(@$points, $polygons), 0, 'can_connect_po
{
my $line = Slic3r::Line->new([10,10], [20,10]);
- is +($line->grow(5))[0]->area, Slic3r::Polygon->new([5,5], [25,5], [25,15], [5,15])->area, 'grow line';
+ is $line->grow(5)->[0]->area, Slic3r::Polygon->new([10,5], [20,5], [20,15], [10,15])->area, 'grow line';
}
#==========================================================