Update plater and print upon changing object parts and their settings

This commit is contained in:
Alessandro Ranellucci 2014-03-23 16:45:55 +01:00
parent 67ef3f1799
commit fec41d6dfd
7 changed files with 43 additions and 13 deletions

View file

@ -5,7 +5,7 @@ use List::Util qw(first);
use Slic3r::Geometry qw(scale);
use Slic3r::Geometry::Clipper qw(union_ex);
has 'id' => (is => 'rw', required => 1, trigger => 1); # sequential number of layer, 0-based
has 'id' => (is => 'rw', required => 1); # sequential number of layer, 0-based
has 'object' => (is => 'ro', weak_ref => 1, required => 1, handles => [qw(print config)]);
has 'upper_layer' => (is => 'rw', weak_ref => 1);
has 'regions' => (is => 'ro', default => sub { [] });
@ -19,11 +19,6 @@ has 'height' => (is => 'ro', required => 1); # layer height in unscal
# also known as 'islands' (all regions and surface types are merged here)
has 'slices' => (is => 'rw', default => sub { Slic3r::ExPolygon::Collection->new });
sub _trigger_id {
my $self = shift;
$_->_trigger_layer for @{$self->regions || []};
}
# the purpose of this method is to be overridden for ::Support layers
sub islands {
my $self = shift;