Slice a single object with multiple layer heights. :-)

This commit is contained in:
Alessandro Ranellucci 2013-03-10 14:58:49 +01:00
parent d1acc511b3
commit f670acb4b1
5 changed files with 141 additions and 13 deletions
lib/Slic3r

View file

@ -81,6 +81,7 @@ has 'model' => (is => 'ro', weak_ref => 1, required => 1);
has 'vertices' => (is => 'ro', default => sub { [] });
has 'volumes' => (is => 'ro', default => sub { [] });
has 'instances' => (is => 'rw');
has 'layer_height_ranges' => (is => 'rw', default => sub { [] }); # [ z_min, z_max, layer_height ]
sub add_volume {
my $self = shift;