mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 01:07:57 -06:00
Instantiate the new C++ filler. It will be used for the supports first.
This commit is contained in:
parent
d2635ab799
commit
b7af7276c9
5 changed files with 313 additions and 1 deletions
|
@ -20,6 +20,13 @@ sub fill_maker {
|
|||
return Slic3r::Fill->new(bounding_box => $self->bounding_box);
|
||||
}
|
||||
|
||||
# Vojtech's implementation: Create the C++ filler.
|
||||
# TODO: lazy
|
||||
sub fill_maker2 {
|
||||
my $self = shift;
|
||||
return Slic3r::Fill2->new(bounding_box => $self->bounding_box);
|
||||
}
|
||||
|
||||
sub region_volumes {
|
||||
my $self = shift;
|
||||
return [ map $self->get_region_volumes($_), 0..($self->region_count - 1) ];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue