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
|
|
|
|
2013-07-16 07:49:34 +00: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 13:02:13 +00:00
|
|
|
use Slic3r::Geometry::Clipper qw(JT_SQUARE);
|
2013-07-05 12:46:32 +00:00
|
|
|
use Storable qw();
|
2011-09-18 17:28:12 +00:00
|
|
|
|
2013-07-16 15:13:01 +00: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 17:10:20 +00:00
|
|
|
sub wkt {
|
|
|
|
my $self = shift;
|
|
|
|
return sprintf "LINESTRING((%s))", join ',', map "$_->[0] $_->[1]", @$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;
|
|
|
|
|
2013-07-15 20:57:22 +00:00
|
|
|
my $simplified = Boost::Geometry::Utils::linestring_simplify($self->pp, $tolerance);
|
2013-09-03 17:26:58 +00:00
|
|
|
return __PACKAGE__->new(@$simplified);
|
2011-09-30 13:46:48 +00:00
|
|
|
}
|
|
|
|
|
2012-08-06 18:54:49 +00:00
|
|
|
sub grow {
|
|
|
|
my $self = shift;
|
2013-04-27 13:02:13 +00:00
|
|
|
my ($distance, $scale, $joinType, $miterLimit) = @_;
|
2013-08-08 00:10:34 +00:00
|
|
|
$joinType //= JT_SQUARE; # we override this one
|
|
|
|
$scale //= 100000; # we init these because we can't pass undef
|
|
|
|
$miterLimit //= 3;
|
2013-04-27 13:02:13 +00:00
|
|
|
|
2013-07-16 15:13:01 +00:00
|
|
|
my @points = @$self;
|
2013-08-08 00:10:34 +00:00
|
|
|
return @{Slic3r::Geometry::Clipper::offset(
|
|
|
|
[ Slic3r::Polygon->new(@points, CORE::reverse @points[1..($#points-1)]) ],
|
|
|
|
$distance, $scale, $joinType, $miterLimit,
|
|
|
|
)};
|
2012-08-06 18:54:49 +00:00
|
|
|
}
|
|
|
|
|
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) = @_;
|
|
|
|
|
2013-07-15 20:57:22 +00:00
|
|
|
my $result = Boost::Geometry::Utils::polygon_multi_linestring_intersection($expolygon->pp, [$self->pp]);
|
2013-09-03 17:26:58 +00:00
|
|
|
return map { __PACKAGE__->new(@$_) } @$result;
|
2011-11-13 17:14:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub bounding_box {
|
|
|
|
my $self = shift;
|
2013-06-16 10:21:25 +00:00
|
|
|
return Slic3r::Geometry::BoundingBox->new_from_points($self);
|
2011-11-13 17:14:02 +00:00
|
|
|
}
|
|
|
|
|
2012-08-29 17:37:27 +00:00
|
|
|
sub size {
|
|
|
|
my $self = shift;
|
2012-11-19 16:39:16 +00:00
|
|
|
return [ Slic3r::Geometry::size_2D($self) ];
|
2012-09-12 14:30:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub align_to_origin {
|
|
|
|
my $self = shift;
|
2013-06-16 10:21:25 +00:00
|
|
|
my $bb = $self->bounding_box;
|
|
|
|
return $self->translate(-$bb->x_min, -$bb->y_min);
|
2012-08-29 17:37:27 +00:00
|
|
|
}
|
|
|
|
|
2011-09-01 19:06:28 +00:00
|
|
|
1;
|