mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-31 09:02:53 +00:00
Refactoring: use Slic3r::Geometry::BoundingBox objects everywhere
This commit is contained in:
@@ -5,7 +5,7 @@ use Slic3r::Geometry qw(PI);
|
||||
|
||||
has 'layer_id' => (is => 'rw');
|
||||
has 'angle' => (is => 'rw', default => sub { $Slic3r::Config->fill_angle });
|
||||
has 'bounding_box' => (is => 'ro', required => 1);
|
||||
has 'bounding_box' => (is => 'ro', required => 1); # Slic3r::Geometry::BoundingBox object
|
||||
|
||||
sub angles () { [0, PI/2] }
|
||||
|
||||
@@ -16,7 +16,7 @@ sub infill_direction {
|
||||
# set infill angle
|
||||
my (@rotate, @shift);
|
||||
$rotate[0] = Slic3r::Geometry::deg2rad($self->angle);
|
||||
$rotate[1] = Slic3r::Geometry::bounding_box_center($self->bounding_box);
|
||||
$rotate[1] = $self->bounding_box->center_2D;
|
||||
@shift = @{$rotate[1]};
|
||||
|
||||
if (defined $self->layer_id) {
|
||||
|
||||
Reference in New Issue
Block a user