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-11-15 23:06:15 +01:00
|
|
|
use Slic3r::Geometry qw(X Y);
|
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);
|
|
|
|
}
|
|
|
|
|
2011-09-01 21:06:28 +02:00
|
|
|
1;
|