Slic3r/xs/t/06_polygon.t

24 lines
479 B
Perl
Raw Normal View History

#!/usr/bin/perl
use strict;
use warnings;
use Slic3r::XS;
use Test::More tests => 3;
my $square = [ # ccw
[100, 100],
[200, 100],
[200, 200],
[100, 200],
];
my $polygon = Slic3r::Polygon::XS->new(@$square);
2013-07-15 22:31:43 +04:00
is_deeply [ @{$polygon->arrayref_pp} ], [ @$square ], 'polygon roundtrip';
2013-07-15 22:31:43 +04:00
my $arrayref = $polygon->arrayref;
isa_ok $arrayref, 'Slic3r::Polygon', 'Perl polygon is blessed';
isa_ok $arrayref->[0], 'Slic3r::Point', 'Perl points are blessed';
__END__