PrusaSlicer-NonPlainar/xs/t/03_point.t

34 lines
777 B
Perl
Raw Normal View History

2013-07-06 13:26:32 +00:00
#!/usr/bin/perl
use strict;
use warnings;
use Slic3r::XS;
use Test::More tests => 8;
2013-07-06 13:26:32 +00:00
2013-07-15 18:31:43 +00:00
my $point = Slic3r::Point->new(10, 15);
2013-07-06 13:26:32 +00:00
is_deeply [ @$point ], [10, 15], 'point roundtrip';
2013-07-15 14:04:49 +00:00
my $point2 = $point->clone;
$point2->scale(2);
is_deeply [ @$point2 ], [20, 30], 'scale';
$point2->translate(10, -15);
is_deeply [ @$point2 ], [30, 15], 'translate';
ok $point->coincides_with($point->clone), 'coincides_with';
ok !$point->coincides_with($point2), 'coincides_with';
2013-07-16 15:13:01 +00:00
{
my $point3 = Slic3r::Point->new(4300000, -9880845);
is $point->[0], $point->x, 'x accessor';
is $point->[1], $point->y, 'y accessor'; #,,
}
{
my $nearest = $point->nearest_point([ $point2, Slic3r::Point->new(100, 200) ]);
ok $nearest->coincides_with($point2), 'nearest_point';
2013-07-16 15:13:01 +00:00
}
2013-07-06 13:26:32 +00:00
__END__