Refactoring: move the 'copies' property to each Print::Object

This commit is contained in:
Alessandro Ranellucci 2012-09-22 16:19:24 +02:00
parent 82ac4722d2
commit 04be94023b
2 changed files with 16 additions and 19 deletions

View file

@ -9,6 +9,7 @@ use Slic3r::Surface ':types';
has 'input_file' => (is => 'rw', required => 0);
has 'mesh' => (is => 'rw', required => 0);
has 'size' => (is => 'rw', required => 1);
has 'copies' => (is => 'rw', default => sub {[ [0,0] ]});
has 'layers' => (
traits => ['Array'],