Instantiate the new C++ filler. It will be used for the supports first.

This commit is contained in:
bubnikv 2016-10-03 16:59:00 +02:00
parent d2635ab799
commit b7af7276c9
5 changed files with 313 additions and 1 deletions

View file

@ -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) ];