Salome HOME
Bug #202 - Fatal error during polyline creation
[modules/hydro.git] / src / HYDROCurveCreator / CurveCreator_Profile.cxx
index d34695d9688de31e6d2dbe484715c8e92330c0c7..c9b349f834aed41eb46b29a02ba0831db1d14039 100644 (file)
@@ -216,34 +216,40 @@ bool CurveCreator_Profile::addPointsInternal( const CurveCreator::SectionsMap &t
 //! For internal use only! Undo/Redo are not used here.
 bool CurveCreator_Profile::setPointInternal( const CurveCreator::SectionsMap &theSectionsMap )
 {
-  bool res = false;
+  bool aRes = false;
 
-  CurveCreator_Section* aSection = mySections.at( 0 );
+  int anISection = 0;
+  CurveCreator_Section* aSection = mySections.at( anISection );
   if( !aSection )
-    return res;
+    return aRes;
 
   CurveCreator::SectionsMap::const_iterator anIt = theSectionsMap.begin();
-  for ( ; anIt != theSectionsMap.end(); anIt++ )
-  {
-    int anISection = anIt->first;
-    if( anISection != 0 )
-      continue;
+  if ( anIt == theSectionsMap.end() )
+    return aRes;
 
-    const CurveCreator::PosPointsList& aSectionPoints = anIt->second;
+  const CurveCreator::PosPointsList& aSectionPoints = anIt->second;
 
-    CurveCreator::PosPointsList::const_iterator aPntIt = aSectionPoints.begin();
-    for( ; aPntIt != aSectionPoints.end(); aPntIt++ )
-    {
-      int anIPnt = (*aPntIt)->myID;
-      aSection->myPoints.erase( aSection->myPoints.begin() + toICoord( anIPnt ), 
-                                aSection->myPoints.begin() + toICoord( anIPnt ) + 2 );
-    }
-  }
-
-  res = addPointsInternal( theSectionsMap );
+  std::list<int> aConvPoints;
+  convert( aSectionPoints, aConvPoints );
+  removeSectionPoints( anISection, aConvPoints );
 
-  if ( res )
+  aRes = addPointsInternal( theSectionsMap );
+  if ( aRes )
     redisplayCurve();
 
-  return res;
+  return aRes;
+}
+
+void CurveCreator_Profile::convert( const CurveCreator::PosPointsList& thePoints,
+                                    std::list<int>& theConvPoints )
+{
+  theConvPoints.clear();
+
+  CurveCreator::PosPointsList::const_iterator aPntIt = thePoints.begin(),
+                                              aPntLast = thePoints.end();
+  for( ; aPntIt != aPntLast; aPntIt++ )
+  {
+    int anIPnt = (*aPntIt)->myID;
+    theConvPoints.push_back( anIPnt );
+  }
 }