X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_IInterpolator.cxx;h=2e3f3e878946b4d7c12b0d5d3f6de32652a7a45d;hb=6bcda532ec67940d5c53e70df3b7912a09208c1c;hp=80e11a20c3b83c155fb2a561f5312a3bad5f783f;hpb=914d3c8044ea08613f24ce41a94ecf067e0e750f;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_IInterpolator.cxx b/src/HYDROData/HYDROData_IInterpolator.cxx index 80e11a20..2e3f3e87 100644 --- a/src/HYDROData/HYDROData_IInterpolator.cxx +++ b/src/HYDROData/HYDROData_IInterpolator.cxx @@ -20,6 +20,9 @@ #include +#define _DEVDEBUG_ +#include "HYDRO_trace.hxx" + HYDROData_IInterpolator::HYDROData_IInterpolator() { } @@ -40,11 +43,13 @@ Handle(HYDROData_IAltitudeObject) HYDROData_IInterpolator::GetAltitudeObject() c 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() ); }