2011-09-01 21:06:28 +02:00
|
|
|
package Slic3r::Polyline;
|
2011-12-30 19:59:51 +01:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
2011-09-01 21:06:28 +02:00
|
|
|
|
2013-07-16 09:49:34 +02:00
|
|
|
use Slic3r::Geometry qw(A B X Y X1 X2 Y1 Y2 polyline_remove_parallel_continuous_edges polyline_remove_acute_vertices);
|
2013-04-27 15:02:13 +02:00
|
|
|
use Slic3r::Geometry::Clipper qw(JT_SQUARE);
|
2013-07-05 14:46:32 +02:00
|
|
|
use Storable qw();
|
2011-09-18 19:28:12 +02:00
|
|
|
|
2013-07-16 17:13:01 +02:00
|
|
|
sub new_scale {
|
|
|
|
my $class = shift;
|
|
|
|
my @points = map { ref($_) eq 'Slic3r::Point' ? $_->pp : $_ } @_;
|
|
|
|
return $class->new(map [ Slic3r::Geometry::scale($_->[X]), Slic3r::Geometry::scale($_->[Y]) ], @points);
|
|
|
|
}
|
|
|
|
|
2012-12-20 18:10:20 +01:00
|
|
|
sub wkt {
|
|
|
|
my $self = shift;
|
|
|
|
return sprintf "LINESTRING((%s))", join ',', map "$_->[0] $_->[1]", @$self;
|
|
|
|
}
|
|
|
|
|
2011-09-18 19:28:12 +02:00
|
|
|
sub merge_continuous_lines {
|
2011-09-02 21:10:20 +02:00
|
|
|
my $self = shift;
|
2011-12-30 19:59:51 +01:00
|
|
|
polyline_remove_parallel_continuous_edges($self);
|
2011-10-09 22:18:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sub remove_acute_vertices {
|
|
|
|
my $self = shift;
|
2011-12-30 19:59:51 +01:00
|
|
|
polyline_remove_acute_vertices($self);
|
2011-09-18 19:28:12 +02:00
|
|
|
}
|
|
|
|
|
2011-12-30 19:59:51 +01:00
|
|
|
sub simplify {
|
2011-09-30 15:46:48 +02:00
|
|
|
my $self = shift;
|
2011-10-09 19:47:21 +02:00
|
|
|
my $tolerance = shift || 10;
|
|
|
|
|
2013-07-15 22:57:22 +02:00
|
|
|
my $simplified = Boost::Geometry::Utils::linestring_simplify($self->pp, $tolerance);
|
2013-09-03 19:26:58 +02:00
|
|
|
return __PACKAGE__->new(@$simplified);
|
2011-09-30 15:46:48 +02:00
|
|
|
}
|
|
|
|
|
2011-11-14 10:54:04 +01:00
|
|
|
sub clip_with_polygon {
|
|
|
|
my $self = shift;
|
|
|
|
my ($polygon) = @_;
|
|
|
|
|
|
|
|
return $self->clip_with_expolygon(Slic3r::ExPolygon->new($polygon));
|
|
|
|
}
|
|
|
|
|
2011-11-13 18:14:02 +01:00
|
|
|
sub clip_with_expolygon {
|
|
|
|
my $self = shift;
|
|
|
|
my ($expolygon) = @_;
|
|
|
|
|
2013-07-15 22:57:22 +02:00
|
|
|
my $result = Boost::Geometry::Utils::polygon_multi_linestring_intersection($expolygon->pp, [$self->pp]);
|
2013-09-03 19:26:58 +02:00
|
|
|
return map { __PACKAGE__->new(@$_) } @$result;
|
2011-11-13 18:14:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sub bounding_box {
|
|
|
|
my $self = shift;
|
2013-06-16 12:21:25 +02:00
|
|
|
return Slic3r::Geometry::BoundingBox->new_from_points($self);
|
2011-11-13 18:14:02 +01:00
|
|
|
}
|
|
|
|
|
2012-08-29 19:37:27 +02:00
|
|
|
sub size {
|
|
|
|
my $self = shift;
|
2012-11-19 17:39:16 +01:00
|
|
|
return [ Slic3r::Geometry::size_2D($self) ];
|
2012-09-12 16:30:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sub align_to_origin {
|
|
|
|
my $self = shift;
|
2013-06-16 12:21:25 +02:00
|
|
|
my $bb = $self->bounding_box;
|
|
|
|
return $self->translate(-$bb->x_min, -$bb->y_min);
|
2012-08-29 19:37:27 +02:00
|
|
|
}
|
|
|
|
|
2011-09-01 21:06:28 +02:00
|
|
|
1;
|