From: eap Date: Thu, 14 Apr 2005 12:53:22 +0000 (+0000) Subject: PAL8596. Fix warping calculation X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=87ee26c34510f3c9f6dae6ec733eb816f88aef7c;p=modules%2Fsmesh.git PAL8596. Fix warping calculation --- diff --git a/src/Controls/SMESH_Controls.cxx b/src/Controls/SMESH_Controls.cxx index ccae60545..9d95deb43 100644 --- a/src/Controls/SMESH_Controls.cxx +++ b/src/Controls/SMESH_Controls.cxx @@ -629,8 +629,8 @@ double Warping::ComputeA( const gp_XYZ& thePnt1, if ( L < Precision::Confusion()) return 0.; - gp_XYZ GI = ( thePnt2 - thePnt1 ) / 2. - theG; - gp_XYZ GJ = ( thePnt3 - thePnt2 ) / 2. - theG; + gp_XYZ GI = ( thePnt2 + thePnt1 ) / 2. - theG; + gp_XYZ GJ = ( thePnt3 + thePnt2 ) / 2. - theG; gp_XYZ N = GI.Crossed( GJ ); if ( N.Modulus() < gp::Resolution() )