From: dmv Date: Mon, 27 Oct 2008 12:18:34 +0000 (+0000) Subject: GEOM: Bad displaying of distance between two objects in 3D X-Git-Tag: V4_1_4rc1~4 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=bce23c1f18ed0229d29e6e79fcec156cd866c614;p=modules%2Fgeom.git GEOM: Bad displaying of distance between two objects in 3D --- diff --git a/src/MeasureGUI/MeasureGUI_DistanceDlg.cxx b/src/MeasureGUI/MeasureGUI_DistanceDlg.cxx index 100f3bad9..6aa2a3887 100644 --- a/src/MeasureGUI/MeasureGUI_DistanceDlg.cxx +++ b/src/MeasureGUI/MeasureGUI_DistanceDlg.cxx @@ -296,7 +296,7 @@ SALOME_Prs* MeasureGUI_DistanceDlg::buildPrs() gp_Pnt aPnt3( ( aPnt1.X() + aPnt2.X() ) / 2, ( aPnt1.Y() + aPnt2.Y() ) / 2, - ( aPnt1.Z() + aPnt2.Z() ) / 2 + 100 ); + ( aPnt1.Z() + aPnt2.Z() ) / 2 ); gp_Vec va( aPnt3, aPnt1 ); gp_Vec vb( aPnt3, aPnt2 );