Adapt plater to new convex hull

This commit is contained in:
Alessandro Ranellucci 2013-11-24 22:42:52 +01:00
parent 9cf138574c
commit 3fca0956bc
4 changed files with 57 additions and 42 deletions
lib/Slic3r

View file

@ -480,6 +480,6 @@ use Moo;
has 'object' => (is => 'ro', weak_ref => 1, required => 1);
has 'rotation' => (is => 'rw', default => sub { 0 }); # around mesh center point
has 'scaling_factor' => (is => 'rw', default => sub { 1 });
has 'offset' => (is => 'rw'); # must be Slic3r::Point object
has 'offset' => (is => 'rw'); # must be Slic3r::Point object in scaled coordinates
1;