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
|
|
|
|
2014-04-30 13:16:15 +00:00
|
|
|
use List::Util qw(first);
|
2014-04-29 23:20:18 +00:00
|
|
|
use Slic3r::Geometry qw(X Y epsilon);
|
2013-04-27 13:02:13 +00:00
|
|
|
use Slic3r::Geometry::Clipper qw(JT_SQUARE);
|
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-11-13 17:14:02 +00:00
|
|
|
sub bounding_box {
|
|
|
|
my $self = shift;
|
2014-01-07 11:48:09 +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
|
|
|
}
|
|
|
|
|
2014-04-29 23:20:18 +00:00
|
|
|
sub is_straight {
|
|
|
|
my ($self) = @_;
|
|
|
|
|
2014-04-30 13:16:15 +00:00
|
|
|
# Check that each segment's direction is equal to the line connecting
|
|
|
|
# first point and last point. (Checking each line against the previous
|
|
|
|
# one would have caused the error to accumulate.)
|
|
|
|
my $dir = Slic3r::Line->new($self->first_point, $self->last_point)->direction;
|
2014-05-02 16:46:22 +00:00
|
|
|
return !defined first { !$_->parallel_to($dir) } @{$self->lines};
|
2014-04-29 23:20:18 +00:00
|
|
|
}
|
|
|
|
|
2011-09-01 19:06:28 +00:00
|
|
|
1;
|