Skip to content

Commit

Permalink
Fix for #734 (#958)
Browse files Browse the repository at this point in the history
  • Loading branch information
costashatz authored and jslee02 committed Jan 19, 2018
1 parent 557a7a7 commit 536d720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dart/dynamics/MeshShape.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,8 @@ void MeshShape::setScale(const Eigen::Vector3d& _scale) {
assert(_scale[1] > 0.0);
assert(_scale[2] > 0.0);
mScale = _scale;
updateVolume();
_updateBoundingBoxDim();
updateVolume();
}

const Eigen::Vector3d& MeshShape::getScale() const {
Expand Down

0 comments on commit 536d720

Please sign in to comment.