2011-09-01 19:06:28 +00:00
|
|
|
package Slic3r::Polyline;
|
2011-12-30 18:59:51 +00:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
2011-09-01 19:06:28 +00:00
|
|
|
|
2011-09-18 17:28:12 +00:00
|
|
|
use Math::Clipper qw();
|
2012-05-19 18:30:46 +00:00
|
|
|
use Scalar::Util qw(reftype);
|
2011-11-13 17:14:02 +00:00
|
|
|
use Slic3r::Geometry qw(A B polyline_remove_parallel_continuous_edges polyline_remove_acute_vertices
|
2012-07-01 22:35:52 +00:00
|
|
|
polyline_lines move_points same_point);
|
2011-09-18 17:28:12 +00:00
|
|
|
|
2011-12-30 18:59:51 +00:00
|
|
|
# the constructor accepts an array(ref) of points
|
|
|
|
sub new {
|
|
|
|
my $class = shift;
|
|
|
|
my $self;
|
|
|
|
if (@_ == 1) {
|
|
|
|
$self = [ @{$_[0]} ];
|
|
|
|
} else {
|
|
|
|
$self = [ @_ ];
|
|
|
|
}
|
|
|
|
|
|
|
|
bless $self, $class;
|
|
|
|
bless $_, 'Slic3r::Point' for @$self;
|
|
|
|
$self;
|
|
|
|
}
|
2011-09-01 19:06:28 +00:00
|
|
|
|
2012-05-23 09:51:20 +00:00
|
|
|
sub clone {
|
|
|
|
my $self = shift;
|
|
|
|
return (ref $self)->new(map $_->clone, @$self);
|
|
|
|
}
|
|
|
|
|
2012-05-19 15:57:38 +00:00
|
|
|
sub serialize {
|
|
|
|
my $self = shift;
|
|
|
|
my $s = \ pack 'l*', map @$_, @$self;
|
|
|
|
bless $s, ref $self;
|
|
|
|
return $s;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub deserialize {
|
|
|
|
my $self = shift;
|
2012-05-19 18:30:46 +00:00
|
|
|
return $self if reftype $self ne 'SCALAR';
|
2012-05-19 15:57:38 +00:00
|
|
|
my @v = unpack '(l2)*', $$self;
|
|
|
|
my $o = [ map [ $v[2*$_], $v[2*$_+1] ], 0 .. int($#v/2) ];
|
|
|
|
bless $_, 'Slic3r::Point' for @$o;
|
|
|
|
bless $o, ref $self;
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2011-09-18 17:28:12 +00:00
|
|
|
sub id {
|
2011-09-01 19:06:28 +00:00
|
|
|
my $self = shift;
|
2011-12-30 18:59:51 +00:00
|
|
|
return join ' - ', sort map $_->id, @$self;
|
2011-09-01 19:06:28 +00:00
|
|
|
}
|
|
|
|
|
2011-09-18 17:28:12 +00:00
|
|
|
sub lines {
|
2011-09-01 19:06:28 +00:00
|
|
|
my $self = shift;
|
2012-07-01 22:15:17 +00:00
|
|
|
return polyline_lines($self);
|
2011-09-01 19:06:28 +00:00
|
|
|
}
|
|
|
|
|
2012-04-09 09:04:32 +00:00
|
|
|
sub boost_linestring {
|
|
|
|
my $self = shift;
|
|
|
|
return Boost::Geometry::Utils::linestring($self);
|
|
|
|
}
|
|
|
|
|
2011-09-18 17:28:12 +00:00
|
|
|
sub merge_continuous_lines {
|
2011-09-02 19:10:20 +00:00
|
|
|
my $self = shift;
|
2011-12-30 18:59:51 +00:00
|
|
|
polyline_remove_parallel_continuous_edges($self);
|
2011-10-09 20:18:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub remove_acute_vertices {
|
|
|
|
my $self = shift;
|
2011-12-30 18:59:51 +00:00
|
|
|
polyline_remove_acute_vertices($self);
|
2011-09-18 17:28:12 +00:00
|
|
|
}
|
|
|
|
|
2011-12-30 18:59:51 +00:00
|
|
|
sub simplify {
|
2011-09-30 13:46:48 +00:00
|
|
|
my $self = shift;
|
2011-10-09 17:47:21 +00:00
|
|
|
my $tolerance = shift || 10;
|
|
|
|
|
2012-02-25 13:46:21 +00:00
|
|
|
@$self = @{ Slic3r::Geometry::douglas_peucker($self, $tolerance) };
|
2011-12-30 18:59:51 +00:00
|
|
|
bless $_, 'Slic3r::Point' for @$self;
|
2011-09-30 13:46:48 +00:00
|
|
|
}
|
|
|
|
|
2012-02-21 19:16:03 +00:00
|
|
|
sub reverse {
|
2011-09-18 17:28:12 +00:00
|
|
|
my $self = shift;
|
2012-02-21 19:16:03 +00:00
|
|
|
@$self = CORE::reverse @$self;
|
2011-09-18 17:28:12 +00:00
|
|
|
}
|
|
|
|
|
2012-05-13 20:56:40 +00:00
|
|
|
sub length {
|
|
|
|
my $self = shift;
|
|
|
|
my $length = 0;
|
|
|
|
$length += $_->length for $self->lines;
|
|
|
|
return $length;
|
|
|
|
}
|
|
|
|
|
2011-09-25 21:15:45 +00:00
|
|
|
sub nearest_point_to {
|
|
|
|
my $self = shift;
|
|
|
|
my ($point) = @_;
|
|
|
|
|
2011-12-30 18:59:51 +00:00
|
|
|
$point = Slic3r::Geometry::nearest_point($point, $self);
|
2011-10-12 12:54:49 +00:00
|
|
|
return Slic3r::Point->new($point);
|
2011-09-25 21:15:45 +00:00
|
|
|
}
|
|
|
|
|
2011-10-04 20:27:45 +00:00
|
|
|
sub has_segment {
|
|
|
|
my $self = shift;
|
|
|
|
my ($line) = @_;
|
|
|
|
|
|
|
|
for ($self->lines) {
|
|
|
|
return 1 if $_->has_segment($line);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-11-14 09:54:04 +00:00
|
|
|
sub clip_with_polygon {
|
|
|
|
my $self = shift;
|
|
|
|
my ($polygon) = @_;
|
|
|
|
|
|
|
|
return $self->clip_with_expolygon(Slic3r::ExPolygon->new($polygon));
|
|
|
|
}
|
|
|
|
|
2011-11-13 17:14:02 +00:00
|
|
|
sub clip_with_expolygon {
|
|
|
|
my $self = shift;
|
|
|
|
my ($expolygon) = @_;
|
|
|
|
|
2012-04-09 09:04:32 +00:00
|
|
|
my $result = Boost::Geometry::Utils::polygon_linestring_intersection(
|
|
|
|
$expolygon->boost_polygon,
|
|
|
|
$self->boost_linestring,
|
|
|
|
);
|
|
|
|
bless $_, 'Slic3r::Polyline' for @$result;
|
2012-04-14 13:25:42 +00:00
|
|
|
bless $_, 'Slic3r::Point' for map @$_, @$result;
|
2012-04-09 09:04:32 +00:00
|
|
|
return @$result;
|
2011-11-13 17:14:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub bounding_box {
|
|
|
|
my $self = shift;
|
2012-01-27 13:29:06 +00:00
|
|
|
return Slic3r::Geometry::bounding_box($self);
|
2011-11-13 17:14:02 +00:00
|
|
|
}
|
|
|
|
|
2012-04-16 09:55:14 +00:00
|
|
|
sub rotate {
|
|
|
|
my $self = shift;
|
|
|
|
my ($angle, $center) = @_;
|
|
|
|
@$self = Slic3r::Geometry::rotate_points($angle, $center, @$self);
|
2012-06-23 19:31:29 +00:00
|
|
|
return $self;
|
2012-04-16 09:55:14 +00:00
|
|
|
}
|
|
|
|
|
2011-11-13 17:14:02 +00:00
|
|
|
sub translate {
|
|
|
|
my $self = shift;
|
|
|
|
my ($x, $y) = @_;
|
2012-04-16 09:55:14 +00:00
|
|
|
@$self = Slic3r::Geometry::move_points([$x, $y], @$self);
|
2012-06-23 19:31:29 +00:00
|
|
|
return $self;
|
2011-11-13 17:14:02 +00:00
|
|
|
}
|
|
|
|
|
2011-09-01 19:06:28 +00:00
|
|
|
1;
|