Collection.pm 303 B

1234567891011121314
  1. package Slic3r::ExtrusionPath::Collection;
  2. use strict;
  3. use warnings;
  4. sub cleanup {
  5. my $self = shift;
  6. # split paths at angles that are too acute to be printed as they will cause blobs
  7. my @paths = map $_->split_at_acute_angles, @$self;
  8. $self->clear;
  9. $self->append(@paths);
  10. }
  11. 1;