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-21 19:21:42 +0400
committerAlessandro Ranellucci <aar@cpan.org>2013-11-21 19:21:42 +0400
commit5f81292f3fe110afbebea377a53a339ff4b589c6 (patch)
tree9ef6fca7e3fe1362e6322b737378fe0bf3d09caa /t/geometry.t
parenta225a8b2ef3a3a37469374a89b913b37b5ace709 (diff)
Ported encloses_point() to XS and renamed to contains_point()
Diffstat (limited to 't/geometry.t')
-rw-r--r--t/geometry.t9
1 files changed, 1 insertions, 8 deletions
diff --git a/t/geometry.t b/t/geometry.t
index 5b16e6cbd..4976f5a09 100644
--- a/t/geometry.t
+++ b/t/geometry.t
@@ -2,7 +2,7 @@ use Test::More;
use strict;
use warnings;
-plan tests => 26;
+plan tests => 25;
BEGIN {
use FindBin;
@@ -85,13 +85,6 @@ my $polygons = [
),
];
-my $points = [
- Slic3r::Point->new(73631077, 371742392),
- Slic3r::Point->new(73631077, 501742392),
-];
-
-is Slic3r::Geometry::can_connect_points(@$points, $polygons), 0, 'can_connect_points';
-
#==========================================================
{