Ported make_perimeters() and infill() to C++/XS, use pure C++ threads, cherry picked from @alexrj 66591bcc556c01572ec7519b1f8cb4ee2d430685

This commit is contained in:
Alessandro Ranellucci 2016-11-26 12:28:39 +01:00 committed by bubnikv
parent 3e8cafa857
commit 86c8207d31
5 changed files with 202 additions and 133 deletions

View file

@ -41,8 +41,12 @@ sub size {
sub process {
my ($self) = @_;
$self->status_cb->(20, "Generating perimeters");
$_->make_perimeters for @{$self->objects};
$self->status_cb->(70, "Infilling layers");
$_->infill for @{$self->objects};
$_->generate_support_material for @{$self->objects};
$self->make_skirt;
$self->make_brim; # must come after make_skirt