New --bed-size option

This commit is contained in:
Alessandro Ranellucci 2012-04-11 16:30:58 +02:00
parent d96d0a9fbf
commit e58ed195fd
6 changed files with 18 additions and 13 deletions

View file

@ -396,10 +396,17 @@ our $Options = {
type => 'i',
},
'duplicate' => {
label => 'Copies (auto arrange)',
label => 'Copies (autoarrange)',
cli => 'duplicate=i',
type => 'i',
},
'bed_size' => {
label => 'Bed size for autoarrange (mm)',
cli => 'bed-size=s',
type => 'point',
serialize => sub { join ',', @{$_[0]} },
deserialize => sub { [ split /,/, $_[0] ] },
},
'duplicate_grid' => {
label => 'Copies (grid)',
cli => 'duplicate-grid=s',