Proper handling of interlaced layers in toolpaths preview

This commit is contained in:
Alessandro Ranellucci 2014-07-04 01:03:41 +02:00
parent 2632b2b30e
commit f0a57a83fd
3 changed files with 110 additions and 49 deletions

View file

@ -350,6 +350,11 @@ sub regions_count {
return scalar @{$self->regions};
}
sub max_layer_height {
my ($self) = @_;
return max(@{$self->config->nozzle_diameter});
}
sub bounding_box {
my $self = shift;