PrusaSlicer-NonPlainar/t/stl.t

45 lines
1.3 KiB
Perl
Raw Normal View History

2011-10-04 15:55:55 +00:00
use Test::More;
2011-10-10 09:00:19 +00:00
use strict;
use warnings;
2011-10-04 15:55:55 +00:00
2011-10-12 14:27:40 +00:00
plan tests => 9;
2011-10-04 15:55:55 +00:00
BEGIN {
use FindBin;
use lib "$FindBin::Bin/../lib";
}
use Slic3r;
my $stl = Slic3r::STL->new;
my @lines;
my $z = 20;
my @points = ([3, 4], [8, 5], [1, 9]);
is_deeply lines(20, 20, 20), [
[ $points[0], $points[1] ],
[ $points[1], $points[2] ],
[ $points[2], $points[0] ],
], 'horizontal';
2011-10-08 17:02:05 +00:00
is_deeply lines(22, 20, 20), [ [ $points[2], $points[1] ] ], 'lower edge on layer';
2011-10-04 15:55:55 +00:00
is_deeply lines(20, 20, 10), [ [ $points[0], $points[1] ] ], 'upper edge on layer';
is_deeply lines(20, 15, 10), [ ], 'upper vertex on layer';
is_deeply lines(28, 20, 30), [ ], 'lower vertex on layer';
2011-10-09 20:18:06 +00:00
is_deeply lines(24, 10, 16), [ [ [4, 4], [2, 6] ] ], 'two edges intersect';
is_deeply lines(24, 10, 20), [ [ [4, 4], [1, 9] ] ], 'one vertex on plane and one edge intersects';
2011-10-04 15:55:55 +00:00
2011-10-10 09:00:19 +00:00
my @lower = $stl->intersect_facet(vertices(22, 20, 20), $z);
my @upper = $stl->intersect_facet(vertices(20, 20, 10), $z);
2011-10-12 14:27:40 +00:00
isa_ok $lower[0], 'Slic3r::Line::FacetEdge::Bottom', 'bottom edge on layer';
isa_ok $upper[0], 'Slic3r::Line::FacetEdge::Top', 'upper edge on layer';
2011-10-04 15:55:55 +00:00
sub vertices {
[ map [ @{$points[$_]}, $_[$_] ], 0..2 ]
}
sub lines {
2011-10-12 14:27:40 +00:00
[ map [ map [ map sprintf('%.0f', $_), @$_ ], @$_ ], $stl->intersect_facet(vertices(@_), $z) ];
2011-10-04 15:55:55 +00:00
}