2011-10-03 09:55:32 +00:00
|
|
|
package Slic3r::Skein;
|
|
|
|
use Moo;
|
|
|
|
|
|
|
|
use Time::HiRes qw(gettimeofday tv_interval);
|
2011-10-04 20:27:45 +00:00
|
|
|
use XXX;
|
2011-10-03 09:55:32 +00:00
|
|
|
|
|
|
|
has 'input_file' => (is => 'ro', required => 1);
|
|
|
|
has 'output_file' => (is => 'rw', required => 0);
|
|
|
|
|
|
|
|
sub go {
|
|
|
|
my $self = shift;
|
|
|
|
|
|
|
|
die "Input file must have .stl extension\n"
|
|
|
|
if $self->input_file !~ /\.stl$/i;
|
|
|
|
|
|
|
|
my $t0 = [gettimeofday];
|
2011-10-07 17:07:57 +00:00
|
|
|
|
|
|
|
# skein the STL into layers
|
2011-10-09 17:47:21 +00:00
|
|
|
# each layer has surfaces with holes
|
2011-10-03 09:55:32 +00:00
|
|
|
my $print = Slic3r::Print->new_from_stl($self->input_file);
|
2011-10-07 17:07:57 +00:00
|
|
|
|
2011-10-09 17:47:21 +00:00
|
|
|
# this will detect the type of each surface (top/bottom/internal)
|
|
|
|
# by splitting them if necessary
|
|
|
|
$print->detect_surfaces_type;
|
|
|
|
|
2011-10-07 17:07:57 +00:00
|
|
|
# this will remove unprintable surfaces
|
|
|
|
# (those that are too tight for extrusion)
|
2011-11-16 08:52:09 +00:00
|
|
|
$_->remove_small_surfaces for @{$print->layers};
|
2011-10-07 17:07:57 +00:00
|
|
|
|
|
|
|
# make bridges printable
|
|
|
|
# this will add a set of bridges to each layer
|
2011-11-16 08:52:09 +00:00
|
|
|
$_->process_bridges for @{$print->layers};
|
2011-10-07 17:07:57 +00:00
|
|
|
|
2011-11-13 17:41:12 +00:00
|
|
|
# make skirt
|
|
|
|
$print->extrude_skirt;
|
|
|
|
|
2011-10-07 17:07:57 +00:00
|
|
|
# make perimeters
|
|
|
|
# this will add a set of extrusion loops to each layer
|
|
|
|
# as well as a set of surfaces to be filled
|
2011-10-03 09:55:32 +00:00
|
|
|
$print->extrude_perimeters;
|
2011-10-04 20:27:45 +00:00
|
|
|
|
2011-10-07 17:07:57 +00:00
|
|
|
# this will remove unprintable perimeter loops
|
|
|
|
# (those that are too tight for extrusion)
|
2011-11-16 08:52:09 +00:00
|
|
|
$_->remove_small_perimeters for @{$print->layers};
|
2011-10-07 17:07:57 +00:00
|
|
|
|
|
|
|
# split fill_surfaces in internal and bridge surfaces
|
2011-11-16 08:52:09 +00:00
|
|
|
$_->split_bridges_fills for @{$print->layers};
|
2011-10-07 17:07:57 +00:00
|
|
|
|
|
|
|
# detect which fill surfaces are near external layers
|
|
|
|
# they will be split in internal and internal-solid surfaces
|
2011-10-04 20:27:45 +00:00
|
|
|
$print->discover_horizontal_shells;
|
|
|
|
|
2011-10-18 13:57:53 +00:00
|
|
|
# combine fill surfaces to honor the "infill every N layers" option
|
|
|
|
$print->infill_every_layers;
|
|
|
|
|
2011-10-07 17:07:57 +00:00
|
|
|
# this will generate extrusion paths for each layer
|
2011-10-03 09:55:32 +00:00
|
|
|
$print->extrude_fills;
|
|
|
|
|
2011-10-07 17:07:57 +00:00
|
|
|
# output everything to a GCODE file
|
2011-10-03 09:55:32 +00:00
|
|
|
if (!$self->output_file) {
|
|
|
|
my $output_file = $self->input_file;
|
|
|
|
$output_file =~ s/\.stl$/.gcode/i;
|
|
|
|
$self->output_file($output_file);
|
|
|
|
}
|
|
|
|
$print->export_gcode($self->output_file);
|
|
|
|
|
2011-10-07 17:07:57 +00:00
|
|
|
# output some statistics
|
2011-10-03 09:55:32 +00:00
|
|
|
my $processing_time = tv_interval($t0);
|
|
|
|
printf "Done. Process took %d minutes and %.3f seconds\n",
|
|
|
|
int($processing_time/60), $processing_time - int($processing_time/60)*60;
|
2011-10-07 17:07:57 +00:00
|
|
|
|
|
|
|
# TODO: more statistics!
|
2011-10-03 09:55:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|