Salome HOME
desactive traces
[modules/hydro.git] / src / HYDROData / HYDROData_StreamAltitude.cxx
index 30270ee9c58b5eb3c2d046c618ce8d50116012d0..2bcf4a6d9c7390700b1bf4912be3f89b7ada5d76 100644 (file)
@@ -18,6 +18,7 @@
 
 #include "HYDROData_StreamAltitude.h"
 
+#include "HYDROData_Channel.h"
 #include "HYDROData_Document.h"
 #include "HYDROData_Profile.h"
 #include "HYDROData_Stream.h"
@@ -37,6 +38,7 @@
 
 #include <Precision.hxx>
 
+#include <TopExp.hxx>
 #include <TopExp_Explorer.hxx>
 
 #include <TopoDS.hxx>
 #include <TopoDS_Edge.hxx>
 
 #include <TopTools_SequenceOfShape.hxx>
+#include <TopTools_ListIteratorOfListOfShape.hxx>
 
 #include <Geom_Line.hxx>
 
 #include <QStringList>
+#include <cmath>
 
-#define _DEVDEBUG_
+//#define _DEVDEBUG_
 #include "HYDRO_trace.hxx"
 
 #ifdef DEB_CLASS2D
@@ -57,7 +61,7 @@
 #include <BRep_Builder.hxx>
 #include <BRepBuilderAPI_MakeVertex.hxx>
 #endif
-IMPLEMENT_STANDARD_HANDLE(HYDROData_StreamAltitude, HYDROData_IAltitudeObject)
+
 IMPLEMENT_STANDARD_RTTIEXT(HYDROData_StreamAltitude, HYDROData_IAltitudeObject)
 
 HYDROData_StreamAltitude::HYDROData_StreamAltitude()
@@ -69,191 +73,253 @@ HYDROData_StreamAltitude::~HYDROData_StreamAltitude()
 {
 }
 
-Standard_Real getAltitudeFromProfile( const Handle(HYDROData_Profile)& theProfile,
-                                      const Standard_Real&             theLeftDist,
-                                      const Standard_Real&             theRightDist )
-{
-  Standard_Real aResAlt = 0.0;
-
-  gp_XY aFirstPoint, aLastPoint;
-  if ( !theProfile->GetLeftPoint( aFirstPoint, false ) ||
-       !theProfile->GetRightPoint( aLastPoint, false ) )
-    return aResAlt;
+bool IsPointBetweenEdges( const gp_Pnt& aFirstPnt1, const gp_Pnt& aLastPnt1,
+                          const gp_Pnt& aFirstPnt2, const gp_Pnt& aLastPnt2,
+                          const gp_Pnt& thePoint) {
+  BRepBuilderAPI_MakeEdge aLeftMakeEdge( aFirstPnt1, aLastPnt1 );
+  BRepBuilderAPI_MakeEdge aBotMakeEdge( aLastPnt1, aLastPnt2 );
+  BRepBuilderAPI_MakeEdge aRightMakeEdge( aLastPnt2, aFirstPnt2 );
+  BRepBuilderAPI_MakeEdge aTopMakeEdge( aFirstPnt2, aFirstPnt1 );
 
-  gp_Pnt aPnt1( aFirstPoint.X(), aFirstPoint.Y(), 0 );
-  gp_Pnt aPnt2( aLastPoint.X(),  aLastPoint.Y(),  0 );
-
-  Standard_Real aProfileDist = aPnt1.Distance( aPnt2 );
-
-  Standard_Real aCoeff = aProfileDist / ( theLeftDist + theRightDist );
+  BRepBuilderAPI_MakeWire aMakeWire( aLeftMakeEdge.Edge(), aBotMakeEdge.Edge(), 
+                                     aRightMakeEdge.Edge(), aTopMakeEdge.Edge() );
 
-  gp_Pnt anIntPoint( aPnt1.XYZ() + ( aCoeff * theLeftDist ) * gp_Dir( gp_Vec( aPnt1, aPnt2 ) ).XYZ() );
+  BRepBuilderAPI_MakeFace aMakeFace( aMakeWire.Wire() );
+       
+  TopoDS_Face aFace = aMakeFace.Face();
+#ifdef DEB_CLASS2D
+  TopoDS_Compound aCmp;
+  BRep_Builder aBB;
+  aBB.MakeCompound(aCmp);
+  aBB.Add(aCmp, aFace);
+  BRepBuilderAPI_MakeVertex aMk(thePoint);
+  aBB.Add(aCmp, aMk.Vertex());
+  BRepTools::Write(aCmp, "ProfileFace.brep");
+#endif     
 
-  gp_Lin aPointLine( anIntPoint, gp::DZ() );
+  gp_XY anXY( thePoint.X(), thePoint.Y() );
+  TopAbs_State aPointState =  HYDROData_Tool::ComputePointState(anXY, aFace);
 
-  gp_Pnt aPrevPoint;
-  gp_Lin aPrevNormal;
-  HYDROData_Profile::ProfilePoints aProfilePoints = theProfile->GetProfilePoints( false );
-  for ( int i = 1, n = aProfilePoints.Length(); i <= n; ++i )
-  {
-    gp_Pnt aProfPoint( aProfilePoints.Value( i ) );
+#ifdef DEB_CLASS2D
+         cout << "Point status is = " << aPointState <<endl;
+#endif
+  return aPointState != TopAbs_OUT;
+}
 
-    Standard_Real aDist = aPointLine.Distance( aProfPoint );
-    if ( aDist <= gp::Resolution() )
+/** compute edge1^(firstPnt1,point) and edge2^(firstPnt2,point):
+ *  if the z values are opposite, the point is between the edges.
+ *  We must also check if the point is near the edges
+ *  (inside the circle defined by the edges: approximation)
+ *  to discriminate false positives in sinuous cases
+ */
+bool IsPointBetweenEdges2( const gp_Pnt& aFirstPnt1, const gp_Pnt& aLastPnt1,
+                           const gp_Pnt& aFirstPnt2, const gp_Pnt& aLastPnt2,
+                           const gp_Pnt& thePoint) {
+  double x1 = aLastPnt1.X() - aFirstPnt1.X(); // v1
+  double y1 = aLastPnt1.Y() - aFirstPnt1.Y();
+  double x2 = aLastPnt2.X() - aFirstPnt2.X(); // v2
+  double y2 = aLastPnt2.Y() - aFirstPnt2.Y();
+  double xa = thePoint.X() - aFirstPnt1.X();  // va
+  double ya = thePoint.Y() - aFirstPnt1.Y();
+  double xb = thePoint.X() - aFirstPnt2.X();  // vb
+  double yb = thePoint.Y() - aFirstPnt2.Y();
+  double z1 = x1*ya -xa*y1; // v1^va: z component
+  double z2 = x2*yb -xb*y2; // v2^vb: z component
+  bool isBetween = true;
+  if (((z1<0) && (z2<0)) || ((z1>=0) && (z2>=0)))
     {
-      // We found the intersected point
-      aResAlt = aProfPoint.Z();
-      break;
+      isBetween = false;
     }
-   
-    gp_Lin aNormal = aPointLine.Normal( aProfPoint );
-    if ( i == 1 )
+  if (isBetween)
     {
-      aPrevNormal = aNormal;
-      aPrevPoint = aProfPoint;
-      continue;
+      double xg = (aFirstPnt1.X() + aLastPnt1.X() + aFirstPnt2.X() + aLastPnt2.X())/4;
+      double yg = (aFirstPnt1.Y() + aLastPnt1.Y() + aFirstPnt2.Y() + aLastPnt2.Y())/4;
+      double df1 = (aFirstPnt1.X()-xg)*(aFirstPnt1.X()-xg) + (aFirstPnt1.Y()-yg)*(aFirstPnt1.Y()-yg);
+      double dl1 = (aLastPnt1.X()-xg)*(aLastPnt1.X()-xg) + (aLastPnt1.Y()-yg)*(aLastPnt1.Y()-yg);
+      double df2 = (aFirstPnt2.X()-xg)*(aFirstPnt2.X()-xg) + (aFirstPnt2.Y()-yg)*(aFirstPnt2.Y()-yg);
+      double dl2 = (aLastPnt2.X()-xg)*(aLastPnt2.X()-xg) + (aLastPnt2.Y()-yg)*(aLastPnt2.Y()-yg);
+      double r2 = std::max(df1,dl1);
+      r2 = std::max(r2,df2);
+      r2 = std::max(r2,dl2);
+      double d2 = (thePoint.X()-xg)*(thePoint.X()-xg) + (thePoint.Y()-yg)*(thePoint.Y()-yg);
+      if (d2 > r2)
+        isBetween = false;
     }
+  return isBetween;
+}
 
-    if ( aPrevNormal.Direction().Dot( aNormal.Direction() ) < 0 )
-    {
-      // We found the intersected edge
-      gp_Lin anEdgeLine( aPrevPoint, gp_Dir( gp_Vec( aPrevPoint, aProfPoint ) ) );
-     
-      Extrema_ExtElC anExtrema( aPointLine, anEdgeLine, Precision::Angular() );
-      if ( !anExtrema.IsParallel() )
-      {
-        Extrema_POnCurv aFirstPnt, aSecPnt;
-        anExtrema.Points( 1, aFirstPnt, aSecPnt );
-
-        const gp_Pnt& anIntPnt = aSecPnt.Value();
-        aResAlt = anIntPnt.Z();
-
-        break;
-      }
-    }
+Standard_Real getAltitudeFromWire( const TopoDS_Wire& theWire,
+                                   const Standard_Real& theLeftDist,
+                                   const Standard_Real& theRightDist )
+{
+  Standard_Real aResAlt = 0.0;
 
-    aPrevNormal = aNormal;
-    aPrevPoint = aProfPoint;
-  }
+  gp_XY aFirstPoint, aLastPoint;
+  TopoDS_Vertex aFirstVertex, aLastVertex;
+  TopExp::Vertices( theWire, aFirstVertex, aLastVertex );
+
+  gp_Pnt aPnt1( BRep_Tool::Pnt( aFirstVertex ) );
+  aPnt1.SetZ( 0 );
+  gp_Pnt aPnt2( BRep_Tool::Pnt( aLastVertex ) );
+  aPnt2.SetZ( 0 );
+  
+  Standard_Real aProfileDist = aPnt1.Distance( aPnt2 );
+
+  Standard_Real aCoeff = aProfileDist / ( theLeftDist + theRightDist );
 
-  return aResAlt;
+  gp_Pnt anIntPoint( aPnt1.XYZ() + ( aCoeff * theLeftDist ) * gp_Dir( gp_Vec( aPnt1, aPnt2 ) ).XYZ() );
+
+  return HYDROData_Tool::GetAltitudeForWire( theWire,
+                                             gp_XY(anIntPoint.X(), anIntPoint.Y()),
+                                             1E-2,
+                                             1E-2,
+                                             HYDROData_IAltitudeObject::GetInvalidAltitude() );
 }
 
-bool HYDROData_StreamAltitude::getBoundaryProfilesForPoint(
-  const gp_XY&               thePoint,
-  Handle(HYDROData_Profile)& theLeftProfile,
-  Handle(HYDROData_Profile)& theRightProfile ) const
+bool HYDROData_StreamAltitude::getBoundaryWiresForPoint(
+  const gp_XY& thePoint,
+  TopoDS_Wire& theLeftWire,
+  TopoDS_Wire& theRightWire ) const
 {
-  Handle(HYDROData_Stream) aStream =
-    Handle(HYDROData_Stream)::DownCast( GetFatherObject() );
-  if ( aStream.IsNull() )
-    return false;
+  gp_Pnt aTestPnt( thePoint.X(),  thePoint.Y(), 0 );
 
-  HYDROData_SequenceOfObjects aStreamProfiles = aStream->GetProfiles();
-  if ( aStreamProfiles.Length() < 2 )
+  Handle(HYDROData_Object) anObject =
+    Handle(HYDROData_Object)::DownCast( GetFatherObject() );
+  if ( anObject.IsNull() ) {
     return false;
+  }
 
-  Handle(HYDROData_Profile) aPrevProfile;
-  gp_Pnt aPrevPnt1, aPrevPnt2;
-  for ( int i = 1, n = aStreamProfiles.Length(); i <= n; ++i )
-  {
-    Handle(HYDROData_Profile) aProfile =
-      Handle(HYDROData_Profile)::DownCast( aStreamProfiles.Value( i ) );
-    if ( aProfile.IsNull() )
-      continue;
-
-    gp_XY aFirstPoint, aLastPoint;
-    if ( !aProfile->GetLeftPoint( aFirstPoint, false ) ||
-         !aProfile->GetRightPoint( aLastPoint, false ) )
-      continue;
+  if ( anObject->GetKind() == KIND_STREAM ) {
+    Handle(HYDROData_Stream) aStream = Handle(HYDROData_Stream)::DownCast( anObject );
+    if ( aStream.IsNull() )
+      return false;
 
-    gp_Pnt aPnt1( aFirstPoint.X(), aFirstPoint.Y(), 0 );
-    gp_Pnt aPnt2( aLastPoint.X(),  aLastPoint.Y(),  0 );
+    HYDROData_SequenceOfObjects aStreamProfiles = aStream->GetProfiles();
+    if ( aStreamProfiles.Length() < 2 )
+      return false;
 
-    if ( !aPrevProfile.IsNull() )
+    Handle(HYDROData_Profile) aPrevProfile;
+    gp_Pnt aPrevPnt1, aPrevPnt2;
+    for ( int i = 1, n = aStreamProfiles.Length(); i <= n; ++i )
     {
-      BRepBuilderAPI_MakeEdge aLeftMakeEdge( aPrevPnt1, aPrevPnt2 );
-      BRepBuilderAPI_MakeEdge aBotMakeEdge( aPrevPnt2, aPnt2 );
-      BRepBuilderAPI_MakeEdge aRightMakeEdge( aPnt2, aPnt1 );
-      BRepBuilderAPI_MakeEdge aTopMakeEdge( aPnt1, aPrevPnt1 );
-
-      BRepBuilderAPI_MakeWire aMakeWire( aLeftMakeEdge.Edge(), aBotMakeEdge.Edge(), 
-                                         aRightMakeEdge.Edge(), aTopMakeEdge.Edge() );
-
-      BRepBuilderAPI_MakeFace aMakeFace( aMakeWire.Wire() );
-       
-      TopoDS_Face aProfilesFace = aMakeFace.Face();
-#ifdef DEB_CLASS2D
-         TopoDS_Compound aCmp;
-      BRep_Builder aBB;
-      aBB.MakeCompound(aCmp);
-         aBB.Add(aCmp, aProfilesFace);
-         gp_Pnt aPnt (thePoint.X(), thePoint.Y(), 0.);
-         BRepBuilderAPI_MakeVertex aMk(aPnt);
-         aBB.Add(aCmp, aMk.Vertex());
-         BRepTools::Write(aCmp, "ProfileFace.brep");
-#endif     
-
-         TopAbs_State aPointState =  HYDROData_Tool::ComputePointState(thePoint, aProfilesFace);
+      Handle(HYDROData_Profile) aProfile =
+        Handle(HYDROData_Profile)::DownCast( aStreamProfiles.Value( i ) );
+      if ( aProfile.IsNull() )
+        continue;
+
+      gp_XY aFirstPoint, aLastPoint;
+      if ( !aProfile->GetLeftPoint( aFirstPoint, false ) ||
+           !aProfile->GetRightPoint( aLastPoint, false ) )
+        continue;
+      
+      gp_Pnt aPnt1( aFirstPoint.X(), aFirstPoint.Y(), 0 );
+      gp_Pnt aPnt2( aLastPoint.X(),  aLastPoint.Y(),  0 );
+
+      if ( !aPrevProfile.IsNull() )
+      {        
+        if ( IsPointBetweenEdges2( aPrevPnt1, aPrevPnt2, aPnt1, aPnt2, aTestPnt ) )
+        {
+          DEBTRACE("point is between profiles "<< i-1 << " and " <<i);
+          theLeftWire = TopoDS::Wire( aPrevProfile->GetShape3D() );
+          theRightWire = TopoDS::Wire( aProfile->GetShape3D() );
+          break;
+        }
+      }
 
-#ifdef DEB_CLASS2D
-         cout << "Point status is = " << aPointState <<endl;
-#endif
-      if ( aPointState != TopAbs_OUT )
-      {
-        theLeftProfile = aPrevProfile;
-        theRightProfile = aProfile;
-        break;
+      aPrevProfile = aProfile;
+      aPrevPnt1 = aPnt1;
+      aPrevPnt2 = aPnt2;
+    }
+  } else if ( anObject->GetKind() == KIND_CHANNEL ) {
+    Handle(HYDROData_Channel) aChannel = Handle(HYDROData_Channel)::DownCast( anObject );
+    if ( aChannel.IsNull() )
+      return false;
+
+    TopTools_ListOfShape aWiresList;
+    TopExp_Explorer anExp( aChannel->GetShape3D(), TopAbs_WIRE );
+    for ( ; anExp.More(); anExp.Next() ) {
+      if(!anExp.Current().IsNull()) {
+        const TopoDS_Wire& aWire = TopoDS::Wire( anExp.Current() );
+        aWiresList.Append( aWire );
       }
     }
 
-    aPrevProfile = aProfile;
-    aPrevPnt1 = aPnt1;
-    aPrevPnt2 = aPnt2;
+    if ( aWiresList.Extent() < 2 )
+      return false;
+
+    TopoDS_Wire aPrevWire;
+    gp_Pnt aPrevPnt1, aPrevPnt2;
+
+    TopTools_ListIteratorOfListOfShape anIt( aWiresList );
+    for ( ; anIt.More(); anIt.Next() ) {
+      TopoDS_Wire& aWire = TopoDS::Wire( anIt.Value() );
+      if ( aWire.IsNull() )
+        continue;
+
+      TopoDS_Vertex aFirstVertex, aLastVertex;
+      TopExp::Vertices( aWire, aFirstVertex, aLastVertex );
+    
+      gp_Pnt aPnt1( BRep_Tool::Pnt( aFirstVertex ) );
+      aPnt1.SetZ( 0 );
+      gp_Pnt aPnt2( BRep_Tool::Pnt( aLastVertex ) );
+      aPnt2.SetZ( 0 );
+
+      if ( !aPrevWire.IsNull() ) {
+        if ( IsPointBetweenEdges2( aPrevPnt1, aPrevPnt2, aPnt1, aPnt2, aTestPnt ) ) {
+          theLeftWire = aPrevWire;
+          theRightWire = aWire;
+          break;
+        }
+      }
+
+      aPrevWire = aWire;
+      aPrevPnt1 = aPnt1;
+      aPrevPnt2 = aPnt2;
+    }
   }
 
-  return !theLeftProfile.IsNull() && !theRightProfile.IsNull();
+  return !theLeftWire.IsNull() && !theRightWire.IsNull();
 }
 
-double HYDROData_StreamAltitude::GetAltitudeForPoint( const gp_XY& thePoint ) const
+double HYDROData_StreamAltitude::GetAltitudeForPoint( const gp_XY& thePoint,
+                                                      int theMethod) const
 {
   DEBTRACE("GetAltitudeForPoint p(" << thePoint.X() << ", " << thePoint.Y() << ")");
   double aResAltitude = GetInvalidAltitude();
 
-  Handle(HYDROData_Stream) aStream =
-    Handle(HYDROData_Stream)::DownCast( GetFatherObject() );
-  if ( aStream.IsNull() )
+  Handle(HYDROData_Object) anObject =
+    Handle(HYDROData_Object)::DownCast( GetFatherObject() );
+  if ( anObject.IsNull() )
   {
-       DEBTRACE("---");
+    DEBTRACE(" --- aStream.IsNull()");
     return aResAltitude;
   }
-
-  TopoDS_Shape aStreamShape = aStream->GetTopShape();
-  if ( aStreamShape.IsNull() )
+  TopoDS_Shape aTopShape = anObject->GetTopShape();
+  if ( aTopShape.IsNull() )
   {
-       DEBTRACE("---");
+    DEBTRACE(" --- aTopShape.IsNull()");
     return aResAltitude;
   }
 
-  TopExp_Explorer aStreamFaceExp( aStreamShape, TopAbs_FACE );
-  if ( !aStreamFaceExp.More() )
+  TopExp_Explorer aFaceExp( aTopShape, TopAbs_FACE );
+  if ( !aFaceExp.More() )
   {
-       DEBTRACE("---");
+    DEBTRACE(" --- !aFaceExp.More()");
     return aResAltitude;
   }
 
   // Get only face because of 2d profile wires is in compound
-  TopoDS_Face aStreamFace = TopoDS::Face( aStreamFaceExp.Current() );
+  TopoDS_Face aFace = TopoDS::Face( aFaceExp.Current() );
 
-  // Check if point is inside of stream presentation
-  TopAbs_State aPointState = HYDROData_Tool::ComputePointState(thePoint, aStreamFace);
+  // Check if point is inside of stream/channel presentation
+  TopAbs_State aPointState = HYDROData_Tool::ComputePointState(thePoint, aFace);
 
 #ifdef DEB_CLASS2D
       cout << "Point status is = " << aPointState <<endl;
          TopoDS_Compound aCmp;
       BRep_Builder aBB;
       aBB.MakeCompound(aCmp);
-         aBB.Add(aCmp, aStreamFace);
+         aBB.Add(aCmp, aFace);
          gp_Pnt aPnt (thePoint.X(), thePoint.Y(), 0.);
          BRepBuilderAPI_MakeVertex aMk(aPnt);
          aBB.Add(aCmp, aMk.Vertex());
@@ -261,52 +327,79 @@ double HYDROData_StreamAltitude::GetAltitudeForPoint( const gp_XY& thePoint ) co
 #endif
   if ( aPointState == TopAbs_OUT )
   {
-       DEBTRACE("---");
+       DEBTRACE(" --- aPointState == TopAbs_OUT");
     return aResAltitude;
   }
 
+  TopoDS_Edge aLeftEdge, aRightEdge;
+
+  if ( anObject->GetKind() == KIND_STREAM ) {
+    Handle(HYDROData_Stream) aStream =
+      Handle(HYDROData_Stream)::DownCast( GetFatherObject() );
+    if ( !aStream.IsNull() ) {
+      aLeftEdge = TopoDS::Edge( aStream->GetLeftShape() );
+      aRightEdge = TopoDS::Edge( aStream->GetRightShape() );
+    }
+  } else if ( anObject->GetKind() == KIND_CHANNEL ) {
+    Handle(HYDROData_Channel) aChannel =
+      Handle(HYDROData_Channel)::DownCast( GetFatherObject() );
+    if ( !aChannel.IsNull() ) {
+      aLeftEdge = TopoDS::Edge( aChannel->GetLeftShape() );
+      aRightEdge = TopoDS::Edge( aChannel->GetRightShape() );
+    }
+  }
+  
   // Find the two profiles between which the point is lies
-  Handle(HYDROData_Profile) aLeftProfile, aRightProfile;
-  if ( !getBoundaryProfilesForPoint( thePoint, aLeftProfile, aRightProfile ) )
+  TopoDS_Wire aLeftWire, aRightWire;
+  if ( !getBoundaryWiresForPoint( thePoint, aLeftWire, aRightWire ) )
   {
-       DEBTRACE("---");
-    return aResAltitude;
+      DEBTRACE(" --- !getBoundaryProfilesForPoint( thePoint, aLeftProfile, aRightProfile )");
+      return aResAltitude;
   }
 
   // Find the projections of point to borders of stream
   gp_XYZ aPointToTest( thePoint.X(), thePoint.Y(), 0.0 );
-
-  TopoDS_Edge aStreamLeftEdge = TopoDS::Edge( aStream->GetLeftShape() );
-  TopoDS_Edge aStreamRightEdge = TopoDS::Edge( aStream->GetRightShape() );
-
+  
   Standard_Real aFirst = 0.0, aLast = 0.0;
-  Handle(Geom_Curve) anEdgeLeftCurve = BRep_Tool::Curve( aStreamLeftEdge, aFirst, aLast );
-  Handle(Geom_Curve) anEdgeRightCurve = BRep_Tool::Curve( aStreamRightEdge, aFirst, aLast );
+  Handle(Geom_Curve) anEdgeLeftCurve = BRep_Tool::Curve( aLeftEdge, aFirst, aLast );
+  Handle(Geom_Curve) anEdgeRightCurve = BRep_Tool::Curve( aRightEdge, aFirst, aLast );
 
   GeomAPI_ProjectPointOnCurve aLeftProject( aPointToTest, anEdgeLeftCurve );
   GeomAPI_ProjectPointOnCurve aRightProject( aPointToTest, anEdgeRightCurve );
 
+  int aNbPoints1 = aRightProject.NbPoints();
+  int aNbPoints2 = aLeftProject.NbPoints();
+  if ( aNbPoints1 < 1 || aNbPoints2 < 1)
+    {
+      DEBTRACE(" --- projections " << aNbPoints1 << " " << aNbPoints2);
+      return aResAltitude;
+    }
   Standard_Real aLeftDist = aLeftProject.LowerDistance();
   Standard_Real aRightDist = aRightProject.LowerDistance();
 
   // Find the altitude in profiles
-  Standard_Real aLeftAlt = getAltitudeFromProfile( aLeftProfile, aLeftDist, aRightDist );
-  Standard_Real aRightAlt = getAltitudeFromProfile( aRightProfile, aLeftDist, aRightDist );
+  Standard_Real aLeftAlt, aRightAlt;
+  gp_Pnt aLeftProfileP1, aLeftProfileP2, aRightProfileP1, aRightProfileP2;
+  aLeftAlt = getAltitudeFromWire( aLeftWire, aLeftDist, aRightDist );
+  aRightAlt = getAltitudeFromWire( aRightWire, aLeftDist, aRightDist );
+  
+  TopoDS_Vertex aFirstVertex, aLastVertex;
+  TopExp::Vertices( aLeftWire, aFirstVertex, aLastVertex );
+  aLeftProfileP1 = BRep_Tool::Pnt( aFirstVertex );
+  aLeftProfileP2 = BRep_Tool::Pnt( aLastVertex );
+
+  TopExp::Vertices( aRightWire, aFirstVertex, aLastVertex );
+  aRightProfileP1 = BRep_Tool::Pnt( aFirstVertex );
+  aRightProfileP2 = BRep_Tool::Pnt( aLastVertex );
 
   // Interpolate altitudes
-  // Left profile line ( the segment between the firts and the last profile point )
-  HYDROData_Profile::ProfilePoints aLeftProfilePoints = aLeftProfile->GetProfilePoints( false );
-  gp_Pnt aLeftProfileP1( aLeftProfilePoints.First() );
+  // Left profile line ( the segment between the first and the last profile point )
   aLeftProfileP1.SetZ( 0 );
-  gp_Pnt aLeftProfileP2( aLeftProfilePoints.Last() );
   aLeftProfileP2.SetZ( 0 );
   gp_Vec aLeftProfileVec( aLeftProfileP1, aLeftProfileP2 );
   Handle(Geom_Line) aLeftProfileLine = new Geom_Line( gp_Ax1( aLeftProfileP1, aLeftProfileVec ) );
   // Right profile line
-  HYDROData_Profile::ProfilePoints aRightProfilePoints = aRightProfile->GetProfilePoints( false );
-  gp_Pnt aRightProfileP1( aRightProfilePoints.First() );
   aRightProfileP1.SetZ( 0 );
-  gp_Pnt aRightProfileP2( aRightProfilePoints.Last() );
   aRightProfileP2.SetZ( 0 );
   gp_Vec aRightProfileVec( aRightProfileP1, aRightProfileP2 );
   Handle(Geom_Line) aRightProfileLine = new Geom_Line( gp_Ax1( aRightProfileP1, aRightProfileVec ) );