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
|
|
|
|
2014-04-30 01:20:18 +02:00
|
|
|
use Slic3r::Geometry qw(X Y epsilon);
|
2013-04-27 15:02:13 +02:00
|
|
|
use Slic3r::Geometry::Clipper qw(JT_SQUARE);
|
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-11-13 18:14:02 +01:00
|
|
|
sub bounding_box {
|
|
|
|
|
my $self = shift;
|
2014-01-07 12:48:09 +01: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
|
|
|
}
|
|
|
|
|
|
2014-04-30 01:20:18 +02:00
|
|
|
sub is_straight {
|
|
|
|
|
my ($self) = @_;
|
|
|
|
|
|
|
|
|
|
my $last_dir;
|
|
|
|
|
foreach my $line (@{$self->lines}) {
|
|
|
|
|
my $dir = $line->direction;
|
|
|
|
|
if (defined $last_dir) {
|
|
|
|
|
if (abs($dir - $last_dir) > epsilon) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$last_dir = $dir;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-01 21:06:28 +02:00
|
|
|
1;
|