PrusaSlicer-NonPlainar/lib/Slic3r/Polyline.pm

19 lines
419 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
2014-11-15 22:06:15 +00:00
use Slic3r::Geometry qw(X Y);
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);
}
2014-12-23 23:11:13 +00:00
sub dump_perl {
my $self = shift;
return sprintf "[%s]", join ',', map "[$_->[0],$_->[1]]", @$self;
}
2011-09-01 19:06:28 +00:00
1;