54 lines
928 B
Perl
54 lines
928 B
Perl
use Test::More;
|
|
use strict;
|
|
use warnings;
|
|
|
|
plan tests => 1;
|
|
|
|
use Math::Clipper ':all';
|
|
|
|
my $clipper = Math::Clipper->new;
|
|
|
|
my $square = [ # ccw
|
|
[10, 10],
|
|
[20, 10],
|
|
[20, 20],
|
|
[10, 20],
|
|
];
|
|
|
|
my $hole_in_square = [ # cw
|
|
[14, 14],
|
|
[14, 16],
|
|
[16, 16],
|
|
[16, 14],
|
|
];
|
|
|
|
my $square2 = [ # ccw
|
|
[5, 12],
|
|
[25, 12],
|
|
[25, 18],
|
|
[5, 18],
|
|
];
|
|
|
|
$clipper->add_subject_polygons([ $square, $hole_in_square ]);
|
|
$clipper->add_clip_polygons([ $square2 ]);
|
|
my $intersection = $clipper->ex_execute(CT_INTERSECTION, PFT_NONZERO, PFT_NONZERO);
|
|
|
|
is_deeply $intersection, [
|
|
{
|
|
holes => [
|
|
[
|
|
[14, 16],
|
|
[16, 16],
|
|
[16, 14],
|
|
[14, 14],
|
|
],
|
|
],
|
|
outer => [
|
|
[10, 18],
|
|
[10, 12],
|
|
[20, 12],
|
|
[20, 18],
|
|
],
|
|
},
|
|
], 'hole is preserved after intersection';
|