Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Ranellucci <aar@cpan.org>2011-10-02 11:57:37 +0400
committerAlessandro Ranellucci <aar@cpan.org>2011-10-02 11:57:37 +0400
commit21d287504c336620c34c08300ed09ebd103f1df7 (patch)
tree94fec1efdf804bfbc52149e604884efbfe9448ce /lib/Slic3r/STL.pm
parent55f2247cd9da33af1eea976ac5a5f396f4844ebb (diff)
New --perimeter-feed-rate and --retract-before-travel options. Includes some refactoring and fixes.
Diffstat (limited to 'lib/Slic3r/STL.pm')
-rw-r--r--lib/Slic3r/STL.pm17
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/Slic3r/STL.pm b/lib/Slic3r/STL.pm
index 6565389c2..2f9492f22 100644
--- a/lib/Slic3r/STL.pm
+++ b/lib/Slic3r/STL.pm
@@ -89,23 +89,6 @@ sub parse_file {
$self->_facet($print, $normal, @copy_vertices);
}
}
-
- print "\n==> PROCESSING SLICES:\n";
- foreach my $layer (@{ $print->layers }) {
- printf "\nProcessing layer %d:\n", $layer->id;
-
- # build polylines of lines which do not already belong to a surface
- my $polylines = $layer->make_polylines;
-
- # build surfaces of polylines (distinguishing contours from holes)
- $layer->make_surfaces($polylines);
-
- # merge surfaces having a common line
- $layer->merge_contiguous_surfaces;
- }
-
- # detect which surfaces are near external layers
- $print->discover_horizontal_shells;
return $print;
}