Don't return the cached bounding box but clone it

xs-config
Alessandro Ranellucci 2013-12-06 19:34:50 +01:00
parent e9b87b69df
commit 72fe6d903c
1 changed files with 2 additions and 2 deletions

View File

@ -171,7 +171,7 @@ sub bounding_box {
if (!defined $self->_bounding_box) {
$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 {
@ -368,7 +368,7 @@ sub bounding_box {
$bounding_box->merge(Slic3r::Geometry::BoundingBox->new_from_bb($_->bb3)) for @meshes;
$self->_bounding_box($bounding_box);
}
return $self->_bounding_box;
return $self->_bounding_box->clone;
}
sub align_to_origin {