mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-18 20:28:08 -06:00
Bugfixes and improvements in surface detection
This commit is contained in:
parent
f1a36502e1
commit
2da5ee7448
13 changed files with 202 additions and 67 deletions
|
@ -2,6 +2,7 @@ package Slic3r::Skein;
|
|||
use Moo;
|
||||
|
||||
use Time::HiRes qw(gettimeofday tv_interval);
|
||||
use XXX;
|
||||
|
||||
has 'input_file' => (is => 'ro', required => 1);
|
||||
has 'output_file' => (is => 'rw', required => 0);
|
||||
|
@ -16,6 +17,10 @@ sub go {
|
|||
my $print = Slic3r::Print->new_from_stl($self->input_file);
|
||||
$print->extrude_perimeters;
|
||||
$print->remove_small_features;
|
||||
|
||||
# detect which surfaces are near external layers
|
||||
$print->discover_horizontal_shells;
|
||||
|
||||
$print->extrude_fills;
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue