mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-11-02 20:51:23 -07:00
Faster algorithm for rectilinear fill
This commit is contained in:
parent
33d7b8c7cf
commit
1978a99416
10 changed files with 242 additions and 159 deletions
|
|
@ -3,12 +3,14 @@ use Moo;
|
|||
|
||||
use Slic3r::Fill::Base;
|
||||
use Slic3r::Fill::Rectilinear;
|
||||
use Slic3r::Fill::Rectilinear2;
|
||||
|
||||
has 'print' => (is => 'ro', required => 1);
|
||||
has 'fillers' => (is => 'rw', default => sub { {} });
|
||||
|
||||
our %FillTypes = (
|
||||
rectilinear => 'Slic3r::Fill::Rectilinear',
|
||||
rectilinear => 'Slic3r::Fill::Rectilinear',
|
||||
rectilinear2 => 'Slic3r::Fill::Rectilinear2',
|
||||
);
|
||||
|
||||
sub BUILD {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue