Salome HOME
Lot 2: change bathy associated to natural object propagated to all cases without...
[modules/hydro.git] / src / HYDROData / HYDROData_IInterpolator.cxx
index d80375117dc2980e87e16b794710a609c3649610..2e3f3e878946b4d7c12b0d5d3f6de32652a7a45d 100644 (file)
@@ -31,8 +31,7 @@ HYDROData_IInterpolator::~HYDROData_IInterpolator()
 {
 }
 
-void HYDROData_IInterpolator::SetAltitudeObject( 
-  const Handle(HYDROData_IAltitudeObject)& theAltitude )
+void HYDROData_IInterpolator::SetAltitudeObject( const Handle(HYDROData_IAltitudeObject)& theAltitude )
 {
   myAltitudeObject = theAltitude;
 }
@@ -42,15 +41,14 @@ Handle(HYDROData_IAltitudeObject) HYDROData_IInterpolator::GetAltitudeObject() c
   return myAltitudeObject;
 }
 
-double HYDROData_IInterpolator::GetAltitudeForPoint( 
-  const double theCoordX, const double theCoordY ) const
+double HYDROData_IInterpolator::GetAltitudeForPoint( const double theCoordX, const double theCoordY ) const
 {
   DEBTRACE("HYDROData_IInterpolator::GetAltitudeForPoint");
   return myAltitudeObject.IsNull() ? HYDROData_IAltitudeObject::GetInvalidAltitude() :
          myAltitudeObject->GetAltitudeForPoint( gp_XY( theCoordX, theCoordY ) );
 }
 
-double HYDROData_IInterpolator::GetAltitudeForPoint( const gp_XY& thePoint ) const
+double HYDROData_IInterpolator::GetAltitudeForPoint( const gp_XY& thePoint) const
 {
   DEBTRACE("HYDROData_IInterpolator::GetAltitudeForPoint");
   return GetAltitudeForPoint( thePoint.X(), thePoint.Y() );