2011-09-01 19:06:28 +00:00
|
|
|
package Slic3r::Polyline;
|
2011-09-06 09:50:43 +00:00
|
|
|
use Moo;
|
2011-09-01 19:06:28 +00:00
|
|
|
|
2011-09-18 17:28:12 +00:00
|
|
|
use Math::Clipper qw();
|
|
|
|
use Sub::Quote;
|
2011-10-09 17:47:21 +00:00
|
|
|
use XXX;
|
2011-09-18 17:28:12 +00:00
|
|
|
|
|
|
|
# arrayref of ordered points
|
|
|
|
has 'points' => (
|
|
|
|
is => 'rw',
|
|
|
|
required => 1,
|
|
|
|
default => sub { [] },
|
|
|
|
isa => quote_sub q{ use Carp; confess "invalid points" if grep ref $_ ne 'Slic3r::Point', @{$_[0]} },
|
2011-09-01 19:06:28 +00:00
|
|
|
);
|
|
|
|
|
2011-09-18 17:28:12 +00:00
|
|
|
sub id {
|
2011-09-01 19:06:28 +00:00
|
|
|
my $self = shift;
|
2011-09-26 12:48:22 +00:00
|
|
|
return join ' - ', sort map $_->id, @{$self->points};
|
2011-09-06 09:50:43 +00:00
|
|
|
}
|
2011-09-01 19:06:28 +00:00
|
|
|
|
2011-09-18 17:28:12 +00:00
|
|
|
sub cast {
|
2011-09-25 21:15:45 +00:00
|
|
|
my $class = shift;
|
2011-09-18 17:28:12 +00:00
|
|
|
my ($points) = @_;
|
|
|
|
|
2011-09-30 13:46:48 +00:00
|
|
|
$points = [ map { ref $_ eq 'ARRAY' ? Slic3r::Point->cast($_) : $_ } @$points ];
|
2011-09-25 21:15:45 +00:00
|
|
|
return $class->new(points => $points);
|
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;
|
2011-09-18 17:28:12 +00:00
|
|
|
my @lines = ();
|
2011-09-01 19:06:28 +00:00
|
|
|
my $previous_point;
|
2011-09-18 17:28:12 +00:00
|
|
|
foreach my $point (@{ $self->points }) {
|
2011-09-01 19:06:28 +00:00
|
|
|
if ($previous_point) {
|
2011-09-18 17:28:12 +00:00
|
|
|
push @lines, Slic3r::Line->new(points => [ $previous_point, $point ]);
|
2011-09-01 19:06:28 +00:00
|
|
|
}
|
|
|
|
$previous_point = $point;
|
|
|
|
}
|
2011-09-18 17:28:12 +00:00
|
|
|
return @lines;
|
2011-09-01 19:06:28 +00:00
|
|
|
}
|
|
|
|
|
2011-09-18 17:28:12 +00:00
|
|
|
sub p {
|
2011-09-01 19:06:28 +00:00
|
|
|
my $self = shift;
|
2011-09-18 17:28:12 +00:00
|
|
|
return [ map $_->p, @{$self->points} ];
|
2011-09-01 19:06:28 +00:00
|
|
|
}
|
|
|
|
|
2011-09-18 17:28:12 +00:00
|
|
|
sub merge_continuous_lines {
|
2011-09-02 19:10:20 +00:00
|
|
|
my $self = shift;
|
|
|
|
|
2011-10-03 18:40:49 +00:00
|
|
|
my @points = map $_->p, @{$self->points};
|
|
|
|
for (my $i = 2; $i <= $#points; $i++) {
|
|
|
|
if (Slic3r::Geometry::lines_parallel([$points[$i-2], $points[$i-1]], [$points[$i-1], $points[$i]])) {
|
|
|
|
# we can remove $points[$i-1]
|
|
|
|
splice @points, $i-1, 1;
|
|
|
|
|
|
|
|
$i--;
|
2011-09-02 19:10:20 +00:00
|
|
|
}
|
|
|
|
}
|
2011-10-03 18:40:49 +00:00
|
|
|
|
|
|
|
@{$self->points} = map Slic3r::Point->cast($_), @points;
|
2011-09-18 17:28:12 +00:00
|
|
|
}
|
|
|
|
|
2011-09-30 13:46:48 +00:00
|
|
|
sub cleanup {
|
|
|
|
my $self = shift;
|
2011-10-09 17:47:21 +00:00
|
|
|
my $tolerance = shift || 10;
|
|
|
|
|
|
|
|
my $points = $self->p;
|
|
|
|
push @$points, $points->[0] if $self->isa('Slic3r::Polyline::Closed');
|
|
|
|
my @clean_points = map Slic3r::Point->cast($_),
|
2011-09-30 13:46:48 +00:00
|
|
|
Slic3r::Geometry::Douglas_Peucker($self->p, $tolerance);
|
2011-10-09 17:47:21 +00:00
|
|
|
pop @clean_points if $self->isa('Slic3r::Polyline::Closed');
|
|
|
|
@{$self->points} = @clean_points;
|
2011-09-30 13:46:48 +00:00
|
|
|
}
|
|
|
|
|
2011-09-18 17:28:12 +00:00
|
|
|
sub reverse_points {
|
|
|
|
my $self = shift;
|
|
|
|
@{$self->points} = reverse @{$self->points};
|
|
|
|
}
|
|
|
|
|
|
|
|
sub is_counter_clockwise {
|
|
|
|
my $self = shift;
|
|
|
|
return Math::Clipper::is_counter_clockwise($self->p);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub make_counter_clockwise {
|
|
|
|
my $self = shift;
|
|
|
|
$self->reverse_points if !$self->is_counter_clockwise;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub make_clockwise {
|
|
|
|
my $self = shift;
|
|
|
|
$self->reverse_points if $self->is_counter_clockwise;
|
2011-09-02 19:10:20 +00:00
|
|
|
}
|
|
|
|
|
2011-09-25 21:15:45 +00:00
|
|
|
sub nearest_point_to {
|
|
|
|
my $self = shift;
|
|
|
|
my ($point) = @_;
|
|
|
|
|
|
|
|
# get point as arrayref
|
|
|
|
$point = ref $point eq 'ARRAY' ? $point : $point->p;
|
|
|
|
|
|
|
|
$point = Slic3r::Geometry::nearest_point($point, $self->p);
|
|
|
|
return Slic3r::Point->cast($point);
|
|
|
|
}
|
|
|
|
|
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-09-01 19:06:28 +00:00
|
|
|
1;
|