From: msv Date: Mon, 17 Dec 2018 12:16:55 +0000 (+0300) Subject: 0030416: Incorrect implementation of the method Bnd_OBB::SquareExtent X-Git-Tag: V7_4_0_beta~282 X-Git-Url: http://git.dev.opencascade.org/gitweb/?a=commitdiff_plain;h=4b97f9b15b9ee39466ad827ec9f28688d893365d;p=occt.git 0030416: Incorrect implementation of the method Bnd_OBB::SquareExtent The method Bnd_OBB::SquareExtent has been corrected. --- diff --git a/src/Bnd/Bnd_OBB.hxx b/src/Bnd/Bnd_OBB.hxx index d40d22ca93..e561d2b299 100644 --- a/src/Bnd/Bnd_OBB.hxx +++ b/src/Bnd/Bnd_OBB.hxx @@ -254,9 +254,9 @@ public: //! Returns square diagonal of this box Standard_Real SquareExtent() const { - return (4.0*myHDims[0] * myHDims[0] + - myHDims[1] * myHDims[1] + - myHDims[1] * myHDims[1]); + return 4.0 * (myHDims[0] * myHDims[0] + + myHDims[1] * myHDims[1] + + myHDims[2] * myHDims[2]); } //! Check if the box do not interfere the other box.