123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- #!/usr/bin/perl
- use strict;
- use warnings;
- use Slic3r::XS;
- use Test::More tests => 17;
- use constant PI => 4 * atan2(1, 1);
- my $square = [ # ccw
- [100, 100],
- [200, 100],
- [200, 200],
- [100, 200],
- ];
- my $hole_in_square = [ # cw
- [140, 140],
- [140, 160],
- [160, 160],
- [160, 140],
- ];
- my $expolygon = Slic3r::ExPolygon->new($square, $hole_in_square);
- is ref($expolygon->pp), 'ARRAY', 'expolygon pp is unblessed';
- is_deeply $expolygon->pp, [$square, $hole_in_square], 'expolygon roundtrip';
- is ref($expolygon->arrayref), 'ARRAY', 'expolygon arrayref is unblessed';
- isa_ok $expolygon->[0], 'Slic3r::Polygon', 'expolygon polygon is blessed';
- isa_ok $expolygon->[0][0], 'Slic3r::Point', 'expolygon point is blessed';
- {
- my $polygon = $expolygon->[0];
- $polygon->scale(2);
- isnt $expolygon->[0][0][0], $polygon->[0][0], 'a copy of polygons is returned';
- }
- is_deeply $expolygon->clone->pp, [$square, $hole_in_square], 'clone';
- # The following tests implicitely check that modifying clones
- # does not modify the original one.
- {
- my $expolygon2 = $expolygon->clone;
- $expolygon2->scale(2.5);
- is_deeply $expolygon2->pp, [
- [map [ 2.5*$_->[0], 2.5*$_->[1] ], @$square],
- [map [ 2.5*$_->[0], 2.5*$_->[1] ], @$hole_in_square]
- ], 'scale';
- }
- {
- my $expolygon2 = $expolygon->clone;
- $expolygon2->translate(10, -5);
- is_deeply $expolygon2->pp, [
- [map [ $_->[0]+10, $_->[1]-5 ], @$square],
- [map [ $_->[0]+10, $_->[1]-5 ], @$hole_in_square]
- ], 'translate';
- }
- {
- my $expolygon2 = $expolygon->clone;
- $expolygon2->rotate(PI/2, Slic3r::Point->new(150,150));
- is_deeply $expolygon2->pp, [
- [ @$square[1,2,3,0] ],
- [ @$hole_in_square[3,0,1,2] ]
- ], 'rotate around Point';
- }
- {
- my $expolygon2 = $expolygon->clone;
- $expolygon2->rotate(PI/2, [150,150]);
- is_deeply $expolygon2->pp, [
- [ @$square[1,2,3,0] ],
- [ @$hole_in_square[3,0,1,2] ]
- ], 'rotate around pure-Perl Point';
- }
- {
- my $expolygon2 = $expolygon->clone;
- $expolygon2->scale(2);
- my $collection = Slic3r::ExPolygon::Collection->new($expolygon->pp, $expolygon2->pp);
- is_deeply $collection->pp, [ $expolygon->pp, $expolygon2->pp ],
- 'expolygon collection (pure Perl) roundtrip';
-
- my $collection2 = Slic3r::ExPolygon::Collection->new($expolygon, $expolygon2);
- is_deeply $collection->pp, $collection2->pp,
- 'expolygon collection (XS) roundtrip';
-
- $collection->clear;
- is scalar(@$collection), 0, 'clear collection';
-
- $collection->append($expolygon);
- is scalar(@$collection), 1, 'append to collection';
-
- my $exp = $collection->[0];
- $exp->scale(3);
- ### we store a copy, not the original by reference
- ###is_deeply $expolygon->pp, $exp->pp, 'input is stored by reference in collection';
- is_deeply $collection->[0]->pp, $exp->pp, 'collection items are returned by reference';
-
- is_deeply $collection->[0]->clone->pp, $collection->[0]->pp, 'clone collection item';
- }
- __END__
|