Salome HOME
compilation on Linux
[modules/hydro.git] / src / HYDROData / HYDROData_ProfileUZ.cxx
index dc82a136233f8f6593c8f468de092ba42c0a3a8f..a91549c5ce3ab85fdc25116e05330bcd4019b916 100755 (executable)
@@ -1,3 +1,24 @@
+// Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
+//
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 
 #include "HYDROData_ProfileUZ.h"
 
@@ -28,26 +49,25 @@ HYDROData_ProfileUZ::~HYDROData_ProfileUZ()
 {
 }
 
-TopoDS_Shape HYDROData_ProfileUZ::GetShape()
+TopoDS_Shape HYDROData_ProfileUZ::GetShape() const
 {
-  // TODO
   return TopoDS_Shape();
 }
 
-double HYDROData_ProfileUZ::GetDepthFromDistance( const double& theDistance ) const
+double HYDROData_ProfileUZ::GetDepthFromDistance( const PointsList& thePoints,
+                                                  const double&     theDistance )
 {
   double aResDepth = 0.0;
 
-  HYDROData_IPolyline::PointsList aPoints = GetPoints();
-  int aNbPoints = aPoints.Size();
+  int aNbPoints = thePoints.Size();
   if ( aNbPoints < 2 )
     return aResDepth;
 
   double aCompDist = 0.0;
-  HYDROData_IPolyline::Point aPrevPoint = aPoints.First();
+  HYDROData_IPolyline::Point aPrevPoint = thePoints.First();
   for ( int i = 2; i <= aNbPoints; ++i )
   {
-    const Point& aCurPoint = aPoints.Value( i );
+    const Point& aCurPoint = thePoints.Value( i );
 
     double aPntDist = gp_Pnt2d( aPrevPoint.X(), 0 ).Distance( gp_Pnt2d( aCurPoint.X(), 0 ) );
 
@@ -55,7 +75,7 @@ double HYDROData_ProfileUZ::GetDepthFromDistance( const double& theDistance ) co
 
     if ( theDistance < aCompDist )
     {
-      double aComPntDist = gp_Pnt2d( aPoints.First().X(), 0 ).Distance( gp_Pnt2d( aPrevPoint.X(), 0 ) );
+      double aComPntDist = gp_Pnt2d( thePoints.First().X(), 0 ).Distance( gp_Pnt2d( aPrevPoint.X(), 0 ) );
 
       double aFindDist = theDistance - aComPntDist;
       double aRatio = aFindDist / ( aPntDist - aFindDist );