X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Profile.cxx;h=6ed959ceb097667b46f020169b0c345c70b0be61;hb=fd7bc8b6aff2f236893c3c549e3338668bd6bec3;hp=f2f8ba46bde8dd1b220323e21c8e77b38c9486d6;hpb=2d99821157e770385d7af917b2d22d6aa3cacb7e;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Profile.cxx b/src/HYDROData/HYDROData_Profile.cxx index f2f8ba46..6ed959ce 100755 --- a/src/HYDROData/HYDROData_Profile.cxx +++ b/src/HYDROData/HYDROData_Profile.cxx @@ -61,7 +61,7 @@ TopoDS_Shape HYDROData_Profile::GetTopShape() const TopoDS_Wire aWire; gp_XY aFirstPoint, aLastPoint; - if ( !GetFirstPoint( aFirstPoint ) || !GetLastPoint( aLastPoint ) ) + if ( !GetLeftPoint( aFirstPoint ) || !GetRightPoint( aLastPoint ) ) return aWire; gp_Pnt aPnt1( aFirstPoint.X(), aFirstPoint.Y(), 0 ); @@ -132,14 +132,14 @@ QColor HYDROData_Profile::getDefaultBorderColor() const bool HYDROData_Profile::IsValid() const { gp_XY aFirstPoint, aLastPoint; - if ( !GetFirstPoint( aFirstPoint ) || !GetLastPoint( aLastPoint ) ) + if ( !GetLeftPoint( aFirstPoint ) || !GetRightPoint( aLastPoint ) ) return false; int aNbPoints = NbPoints(); return aNbPoints > 1; } -void HYDROData_Profile::SetFirstPoint( const gp_XY& thePoint ) +void HYDROData_Profile::SetLeftPoint( const gp_XY& thePoint ) { TDF_Label aLabel = myLab.FindChild( DataTag_FirstPoint ); @@ -153,7 +153,7 @@ void HYDROData_Profile::SetFirstPoint( const gp_XY& thePoint ) SetToUpdate( true ); } -bool HYDROData_Profile::GetFirstPoint( gp_XY& thePoint ) const +bool HYDROData_Profile::GetLeftPoint( gp_XY& thePoint ) const { TDF_Label aLabel = myLab.FindChild( DataTag_FirstPoint, false ); if ( aLabel.IsNull() ) @@ -169,7 +169,7 @@ bool HYDROData_Profile::GetFirstPoint( gp_XY& thePoint ) const return true; } -void HYDROData_Profile::SetLastPoint( const gp_XY& thePoint ) +void HYDROData_Profile::SetRightPoint( const gp_XY& thePoint ) { TDF_Label aLabel = myLab.FindChild( DataTag_LastPoint ); @@ -183,7 +183,7 @@ void HYDROData_Profile::SetLastPoint( const gp_XY& thePoint ) SetToUpdate( true ); } -bool HYDROData_Profile::GetLastPoint( gp_XY& thePoint ) const +bool HYDROData_Profile::GetRightPoint( gp_XY& thePoint ) const { TDF_Label aLabel = myLab.FindChild( DataTag_LastPoint, false ); if ( aLabel.IsNull() ) @@ -291,8 +291,8 @@ void HYDROData_Profile::SetProfilePoints( const ProfilePoints& thePoints ) aProfileUZ->AddPoint( 0, aParPoint ); } - SetFirstPoint( aFirstPoint ); - SetLastPoint( aLastPoint ); + SetLeftPoint( aFirstPoint ); + SetRightPoint( aLastPoint ); } HYDROData_Profile::ProfilePoints HYDROData_Profile::GetProfilePoints() const @@ -300,7 +300,7 @@ HYDROData_Profile::ProfilePoints HYDROData_Profile::GetProfilePoints() const ProfilePoints aResPoints; gp_XY aFirstPoint, aLastPoint; - if ( !GetFirstPoint( aFirstPoint ) || !GetLastPoint( aLastPoint ) ) + if ( !GetLeftPoint( aFirstPoint ) || !GetRightPoint( aLastPoint ) ) return aResPoints; HYDROData_ProfileUZ::PointsList aParametricPoints = GetParametricPoints();