mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-12 16:29:03 +08:00
Don't return the cached bounding box but clone it
This commit is contained in:
parent
bed1625d6b
commit
f4d12b5930
@ -171,7 +171,7 @@ sub bounding_box {
|
|||||||
if (!defined $self->_bounding_box) {
|
if (!defined $self->_bounding_box) {
|
||||||
$self->_bounding_box(Slic3r::Geometry::BoundingBox->merge(map $_->bounding_box, @{$self->objects}));
|
$self->_bounding_box(Slic3r::Geometry::BoundingBox->merge(map $_->bounding_box, @{$self->objects}));
|
||||||
}
|
}
|
||||||
return $self->_bounding_box;
|
return $self->_bounding_box->clone;
|
||||||
}
|
}
|
||||||
|
|
||||||
sub align_to_origin {
|
sub align_to_origin {
|
||||||
@ -368,7 +368,7 @@ sub bounding_box {
|
|||||||
$bounding_box->merge(Slic3r::Geometry::BoundingBox->new_from_bb($_->bb3)) for @meshes;
|
$bounding_box->merge(Slic3r::Geometry::BoundingBox->new_from_bb($_->bb3)) for @meshes;
|
||||||
$self->_bounding_box($bounding_box);
|
$self->_bounding_box($bounding_box);
|
||||||
}
|
}
|
||||||
return $self->_bounding_box;
|
return $self->_bounding_box->clone;
|
||||||
}
|
}
|
||||||
|
|
||||||
sub align_to_origin {
|
sub align_to_origin {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user