PrusaSlicer-NonPlainar/lib/Slic3r/Polyline.pm

47 lines
1003 B
Perl
Raw Normal View History

2011-09-01 19:06:28 +00:00
package Slic3r::Polyline;
use strict;
use warnings;
2011-09-01 19:06:28 +00:00
use Slic3r::Geometry qw(X Y epsilon);
use Slic3r::Geometry::Clipper qw(JT_SQUARE);
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);
}
sub wkt {
my $self = shift;
return sprintf "LINESTRING((%s))", join ',', map "$_->[0] $_->[1]", @$self;
}
sub bounding_box {
my $self = shift;
2014-01-07 11:48:09 +00:00
return Slic3r::Geometry::BoundingBox->new_from_points([ @$self ]);
}
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 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 19:06:28 +00:00
1;