Adopt XS containers everywhere (incomplete work)

This commit is contained in:
Alessandro Ranellucci 2013-07-16 09:49:34 +02:00
parent 339ba9e5c3
commit 9b582a11ff
30 changed files with 130 additions and 311 deletions

View file

@ -9,7 +9,7 @@ sub unpack { $_[0] }
sub first_point {
my $self = shift;
return $self->paths->[0]->unpack->polyline->[0];
return $self->paths->[0]->polyline->[0];
}
sub chained_path {
@ -21,7 +21,7 @@ sub chained_path {
# make sure we pass the same path objects to the Collection constructor
# and the ->chained_path() method because the latter will reverse the
# paths in-place when needed and we need to return them that way
my @paths = map $_->unpack, @{$self->paths};
my @paths = @{$self->paths};
my $collection = Slic3r::Polyline::Collection->new(
polylines => [ map $_->polyline, @paths ],
);