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
|
2011-12-24 10:01:28 +00:00
|
|
|
diff_ex diff union_ex intersection_ex xor_ex PFT_EVENODD JT_MITER JT_ROUND
|
2013-05-31 12:30:07 +00:00
|
|
|
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
|
|
|
|
2013-05-20 07:56:55 +00:00
|
|
|
use Math::Clipper 1.22 qw(:cliptypes :polyfilltypes :jointypes is_counter_clockwise area);
|
2011-12-02 22:35:39 +00:00
|
|
|
use Slic3r::Geometry qw(scale);
|
2011-10-10 15:27:00 +00:00
|
|
|
our $clipper = Math::Clipper->new;
|
|
|
|
|
2011-10-18 13:57:53 +00:00
|
|
|
sub safety_offset {
|
2012-06-23 18:08:08 +00:00
|
|
|
my ($polygons, $factor) = @_;
|
2013-07-16 07:49:34 +00:00
|
|
|
return [ map Slic3r::Polygon->new(@$_),
|
|
|
|
@{Math::Clipper::int_offset(_convert($polygons), $factor // (scale 1e-05), 100000, JT_MITER, 2)} ];
|
2011-10-18 13:57:53 +00:00
|
|
|
}
|
|
|
|
|
2013-03-26 12:57:37 +00:00
|
|
|
sub safety_offset_ex {
|
2013-03-31 17:40:25 +00:00
|
|
|
my ($polygons, $factor) = @_;
|
2013-07-16 07:49:34 +00:00
|
|
|
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;
|
2013-07-16 07:49:34 +00:00
|
|
|
$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);
|
|
|
|
}
|
|
|
|
|
2013-03-14 13:27:08 +00:00
|
|
|
sub collapse_ex {
|
2013-04-18 17:49:02 +00:00
|
|
|
my ($polygons, $width) = @_;
|
2013-07-16 18:09:53 +00:00
|
|
|
return offset2_ex($polygons, -$width/2, +$width/2);
|
2013-03-14 13:27:08 +00:00
|
|
|
}
|
|
|
|
|
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 {
|
2013-07-16 07:49:34 +00:00
|
|
|
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;
|