mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-19 11:23:42 +00:00
Fix scaled model objects causing a test to fail
This commit is contained in:
@@ -393,8 +393,12 @@ sub raw_mesh {
|
||||
sub raw_bounding_box {
|
||||
my $self = shift;
|
||||
|
||||
my @meshes = map $_->mesh, grep !$_->modifier, @{ $self->volumes };
|
||||
my @meshes = map $_->mesh->clone, grep !$_->modifier, @{ $self->volumes };
|
||||
die "No meshes found" if !@meshes;
|
||||
|
||||
my $instance = $self->instances->[0];
|
||||
$instance->transform_mesh($_, 1) for @meshes;
|
||||
|
||||
my $bb = (shift @meshes)->bounding_box;
|
||||
$bb->merge($_->bounding_box) for @meshes;
|
||||
return $bb;
|
||||
|
||||
Reference in New Issue
Block a user