PrusaSlicer-NonPlainar/lib/Slic3r/Geometry/Clipper.pm

77 lines
2.5 KiB
Perl
Raw Normal View History

2011-10-10 15:27:00 +00:00
package Slic3r::Geometry::Clipper;
use strict;
use warnings;
require Exporter;
our @ISA = qw(Exporter);
2013-03-26 12:57:37 +00:00
our @EXPORT_OK = qw(safety_offset safety_offset_ex offset offset_ex collapse_ex
diff_ex diff union_ex intersection_ex xor_ex PFT_EVENODD JT_MITER JT_ROUND
JT_SQUARE is_counter_clockwise union_pt offset2 offset2_ex traverse_pt
2013-07-29 18:49:54 +00:00
intersection union);
2011-10-10 15:27:00 +00:00
use Math::Clipper 1.22 qw(:cliptypes :polyfilltypes :jointypes is_counter_clockwise area);
use Slic3r::Geometry qw(scale);
2011-10-10 15:27:00 +00:00
our $clipper = Math::Clipper->new;
sub safety_offset {
my ($polygons, $factor) = @_;
return [ map Slic3r::Polygon->new(@$_),
@{Math::Clipper::int_offset(_convert($polygons), $factor // (scale 1e-05), 100000, JT_MITER, 2)} ];
}
2013-03-26 12:57:37 +00:00
sub safety_offset_ex {
2013-03-31 17:40:25 +00:00
my ($polygons, $factor) = @_;
return map Slic3r::ExPolygon->new($_->{outer}, @{$_->{holes}}),
2013-07-15 18:31:43 +00:00
@{Math::Clipper::ex_int_offset(_convert($polygons), $factor // (scale 1e-05), 100000, JT_MITER, 2)};
2013-03-26 12:57:37 +00:00
}
2013-07-29 18:49:54 +00:00
sub union {
my ($polygons, $jointype, $safety_offset) = @_;
$jointype = PFT_NONZERO unless defined $jointype;
$clipper->clear;
$clipper->add_subject_polygons($safety_offset ? safety_offset($polygons) : $polygons);
return [
map Slic3r::Polygon->new(@$_),
@{ $clipper->execute(CT_UNION, $jointype, $jointype) },
];
}
2013-05-09 12:52:56 +00:00
sub union_pt {
my ($polygons, $jointype, $safety_offset) = @_;
$jointype = PFT_NONZERO unless defined $jointype;
$clipper->clear;
$clipper->add_subject_polygons($safety_offset ? _convert(safety_offset($polygons)) : _convert($polygons));
2013-05-09 12:52:56 +00:00
return $clipper->pt_execute(CT_UNION, $jointype, $jointype);
}
sub collapse_ex {
2013-04-18 17:49:02 +00:00
my ($polygons, $width) = @_;
return offset2_ex($polygons, -$width/2, +$width/2);
}
2013-05-11 07:24:48 +00:00
sub traverse_pt {
2013-05-11 19:30:26 +00:00
my ($polynodes) = @_;
2013-05-11 07:24:48 +00:00
# use a nearest neighbor search to order these children
# TODO: supply second argument to chained_path_items() too?
my @nodes = @{Slic3r::Geometry::chained_path_items(
[ map [ ($_->{outer} ? $_->{outer}[0] : $_->{hole}[0]), $_ ], @$polynodes ],
)};
my @polygons = ();
foreach my $polynode (@$polynodes) {
2013-05-11 19:05:29 +00:00
# traverse the next depth
2013-05-11 19:30:26 +00:00
push @polygons, traverse_pt($polynode->{children});
push @polygons, $polynode->{outer} // [ reverse @{$polynode->{hole}} ];
2013-05-11 07:24:48 +00:00
}
return @polygons;
}
2013-07-15 18:31:43 +00:00
sub _convert {
my $p = shift;
$p = $p->pp if ref($p) ne 'ARRAY' && $p->can('pp');
2013-07-16 15:13:01 +00:00
return [ map { (ref($_) ne 'ARRAY' && $_->can('pp')) ? $_->pp : $_ } @$p ];
2013-07-15 18:31:43 +00:00
}
2011-10-10 15:27:00 +00:00
1;