From 14b3cb85a675104589ed821d4531cc32f8dcc224 Mon Sep 17 00:00:00 2001 From: eap Date: Thu, 14 Apr 2005 12:55:31 +0000 Subject: [PATCH 1/1] PAL8596. Fix warping calculation --- src/Controls/SMESH_Controls.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Controls/SMESH_Controls.cxx b/src/Controls/SMESH_Controls.cxx index 4aa92f1d2..084f07d9a 100644 --- a/src/Controls/SMESH_Controls.cxx +++ b/src/Controls/SMESH_Controls.cxx @@ -638,8 +638,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() ) -- 2.30.2