1 // Copyright (C) 2014-2015 EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 // Lesser General Public License for more details.
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #include "HYDROData_SplitToZonesTool.h"
21 #include "HYDROData_PolylineXY.h"
22 #include "HYDROData_ShapesGroup.h"
23 #include <HYDROData_Transform.h>
24 #include <BRepAlgoAPI_Cut.hxx>
25 #include <BRepAlgoAPI_Common.hxx>
26 #include <BRepBuilderAPI_MakeFace.hxx>
27 #include <BRep_Builder.hxx>
28 #include <TopExp_Explorer.hxx>
30 #include <TopoDS_Shape.hxx>
31 #include <TopoDS_Compound.hxx>
32 #include <TopoDS_Wire.hxx>
33 #include <TopoDS_Edge.hxx>
34 #include <BRepCheck_Analyzer.hxx>
35 #include <TopTools_ListOfShape.hxx>
36 #include <TopTools_ListIteratorOfListOfShape.hxx>
38 #include <BRepGProp.hxx>
39 #include <GProp_GProps.hxx>
40 #include <Geom_Plane.hxx>
41 #include <BRepBuilderAPI_FindPlane.hxx>
43 //#define DEB_SPLIT_TO_ZONES 1
44 //#define DEB_SPLIT_TO_ZONES_CHECK_PARTITION 1
45 #if (defined (DEB_SPLIT_TO_ZONES) || defined(DEB_SPLIT_TO_ZONES_CHECK_PARTITION))
46 #include <BRepTools.hxx>
47 static TCollection_AsciiString fileNameBefore("BeforeTranslation");
50 TopoDS_Face HYDROData_SplitToZonesTool::SplitData::Face() const
56 if ( Shape.ShapeType() == TopAbs_FACE )
58 aResFace = TopoDS::Face( Shape );
60 else if ( Shape.ShapeType() == TopAbs_WIRE )
62 BRepBuilderAPI_MakeFace aMakeFace( TopoDS::Wire( Shape ), Standard_True );
64 if( aMakeFace.IsDone() )
65 aResFace = aMakeFace.Face();
72 Standard_Boolean buildLimFace(const TopoDS_Wire& theBndWire, TopoDS_Face& outFace)
75 BRepGProp::LinearProperties(theBndWire,G);
76 const gp_Pnt& aCPnt = G.CentreOfMass();
78 BRepBuilderAPI_FindPlane fndPlane (theBndWire, Precision::Confusion());
80 aPln = fndPlane.Plane()->Pln();
82 aPln = gp_Pln(aCPnt, gp::OZ().Direction());
83 BRepBuilderAPI_MakeFace aMkFace(aPln, theBndWire);
84 if(aMkFace.IsDone()) {
85 outFace = aMkFace.Face();
86 if(!outFace.IsNull()) {
87 #ifdef DEB_SPLIT_TO_ZONES
88 // BRepTools::Write(limFace,"FL.brep");
93 return Standard_False;
95 //======================================================================================
97 void HYDROData_SplitToZonesTool::SetFileNames(const QString& theNameBefore, const QString& theNameAfter)
99 #ifdef DEB_SPLIT_TO_ZONES_CHECK_PARTITION
100 if(!theNameBefore.isNull() && !theNameBefore.isEmpty())
102 TCollection_AsciiString aName (theNameBefore.toStdString().data());
103 fileNameBefore = aName;
105 if(!theNameAfter.isNull() && !theNameAfter.isEmpty())
107 TCollection_AsciiString aName (theNameAfter.toStdString().data());
108 HYDROData_Transform::SetFileName (aName);
112 //======================================================================================
113 Standard_Integer HYDROData_SplitToZonesTool::SplitFaces(const TopoDS_Compound& theComp,
114 HYDROData_Transform& theTool)
117 theTool.SetArgument(theComp);
119 const Standard_Boolean bToTransform = theTool.ToTransform();
120 theTool.SetToTransform(bToTransform);
122 Standard_Integer anErr = theTool.ErrorStatus();
126 //======================================================================================
127 HYDROData_SplitToZonesTool::SplitDataList
128 HYDROData_SplitToZonesTool::Split( const HYDROData_SequenceOfObjects& theObjectList,
129 const HYDROData_SequenceOfObjects& theGroupsList,
130 const Handle(HYDROData_PolylineXY)& thePolyline )
132 SplitDataList anOutputSplitDataList;
133 if(theObjectList.IsEmpty()) return anOutputSplitDataList;
135 // Collect the object shapes to split. InputDataList will contain elements which will hold shape & name_of_shape.
136 SplitDataList anInputSplitDataList;
137 #ifdef DEB_SPLIT_TO_ZONES
138 TCollection_AsciiString aNam("Faces_");
140 for( int anIndex = 1, aLength = theObjectList.Length(); anIndex <= aLength; anIndex++ )
142 Handle(HYDROData_Entity) anObj = theObjectList.Value( anIndex );
145 Handle(HYDROData_Object) aGeomObj = Handle(HYDROData_Object)::DownCast( anObj );
146 if( !aGeomObj.IsNull() ) {
147 aShape = aGeomObj->GetTopShape();
150 if ( aShape.IsNull() )
152 #ifdef DEB_SPLIT_TO_ZONES
153 TCollection_AsciiString aName = aNam + anIndex + ".brep";
154 BRepTools::Write(aShape, aName.ToCString());
156 if ( aShape.ShapeType() == TopAbs_COMPOUND ) {
157 // Create split data for each face contained in the compound
158 TopExp_Explorer anExp( aShape, TopAbs_FACE );
159 for ( ; anExp.More(); anExp.Next() ) {
160 const TopoDS_Face& aFace = TopoDS::Face( anExp.Current() );
161 if ( !aFace.IsNull() ) {
162 SplitData aSplitData( SplitData::Data_Zone, aFace, anObj->GetName() );
163 anInputSplitDataList.append( aSplitData );
167 SplitData aSplitData( SplitData::Data_Zone, aShape, anObj->GetName() );
168 anInputSplitDataList.append( aSplitData );
172 SplitDataList anInputGroupList;
173 for( int anIndex = 1, aLength = theGroupsList.Length(); anIndex <=aLength; anIndex++ )
175 Handle(HYDROData_ShapesGroup) aGeomGroup =
176 Handle(HYDROData_ShapesGroup)::DownCast( theGroupsList.Value( anIndex ) );
177 if( aGeomGroup.IsNull() )
180 TopTools_SequenceOfShape aGroupShapes;
181 aGeomGroup->GetShapes( aGroupShapes );
182 for( int i = 1, aNbShapes = aGroupShapes.Length(); i <= aNbShapes; i++ ) {
183 const TopoDS_Shape& aGroupShape = aGroupShapes.Value( i );
184 if ( aGroupShape.IsNull() )
187 if ( aGroupShape.ShapeType() == TopAbs_COMPOUND ) {
188 TopExp_Explorer anExp( aGroupShape, TopAbs_EDGE );
189 for ( ; anExp.More(); anExp.Next() ) {
190 const TopoDS_Edge& anEdge = TopoDS::Edge( anExp.Current() );
191 if ( !anEdge.IsNull() ) {
192 SplitData aSplitData( SplitData::Data_Edge, anEdge, aGeomGroup->GetName() );
193 anInputGroupList.append( aSplitData );
197 SplitData aSplitData( SplitData::Data_Edge, aGroupShape, aGeomGroup->GetName() );
198 anInputGroupList.append( aSplitData );
199 #ifdef DEB_SPLIT_TO_ZONES
200 QString aStr = aSplitData.ObjectNames.join(" ");
201 cout << "Group# = " <<anIndex <<" Nmb in grp = " << i<< " Names = "<<aStr.toStdString() << " size = " <<aSplitData.ObjectNames.size() <<endl;
206 // If only one shape is given we don't split it
207 // algorithm just returns the unpacked input data
208 bool limplus1Object(false);
209 if(theObjectList.Size() == 1 ) {
210 if(thePolyline.IsNull()) {
211 anOutputSplitDataList.append(anInputSplitDataList);
212 if(!theGroupsList.IsEmpty() )
213 anOutputSplitDataList.append(anInputGroupList);
214 return anOutputSplitDataList;
216 limplus1Object = true;// size =1 && hasLimits
218 HYDROData_DataMapOfShapeListOfString aDM3;
219 if(!anInputGroupList.isEmpty()) {// Old edge ==> List_Of_Names
220 QStringList aListOfNames;
221 for (int i=0;i < anInputGroupList.size() ;i++) {
222 const TopoDS_Shape& aSh = anInputGroupList.at(i).Shape;
223 aDM3.Add(aSh, anInputGroupList.at(i).ObjectNames);
227 // Step 1. Prepare Partition structures.
228 TopoDS_Shape aResult;
229 BOPCol_ListOfShape aLS;
230 QStringList aListOfNames;
231 TopoDS_Compound aCmp;
233 aBB.MakeCompound(aCmp);
234 for (int i=0;i < anInputSplitDataList.size() ;i++) {
235 const TopoDS_Shape& aSh = anInputSplitDataList.at(i).Shape;
236 aDM3.Add(aSh, anInputSplitDataList.at(i).ObjectNames);
239 #ifdef DEB_SPLIT_TO_ZONES
240 //TCollection_AsciiString aName = aNam + i + ".brep";
241 //BRepTools::Write(aSh, aName.ToCString());
244 #ifdef DEB_SPLIT_TO_ZONES_CHECK_PARTITION
245 TCollection_AsciiString aNameBefore = fileNameBefore + ".brep";
246 BRepTools::Write(aCmp, aNameBefore.ToCString());
249 HYDROData_DataMapOfShapeListOfShape aDM1;
250 if(anInputSplitDataList.size() > 1) {
251 HYDROData_Transform splitTool;
252 const Standard_Integer anErr = SplitFaces(aCmp, splitTool);
254 return anOutputSplitDataList;
255 aResult = splitTool.Shape();
256 if (aResult.IsNull())
257 return anOutputSplitDataList;
258 BRepCheck_Analyzer aCheck (aResult);
259 if(!aCheck.IsValid()) {
260 #ifdef DEB_SPLIT_TO_ZONES
261 cout << "result is not valid" <<endl;
262 BRepTools::Write(aResult, "SplitFacesNV.brep");
264 return anOutputSplitDataList;
266 #ifdef DEB_SPLIT_TO_ZONES
267 BRepTools::Write(aResult, "SplitFacesV.brep");
270 // Step 3. Collect history
271 //HYDROData_DataMapOfShapeListOfShape aDM1;
272 BOPCol_ListIteratorOfListOfShape anIt(aLS);
273 #ifdef DEB_SPLIT_TO_ZONES
274 TCollection_AsciiString aNamM ("EdgM_");
275 TCollection_AsciiString aNamG ("EdgG_");
277 for (int i =1;anIt.More();anIt.Next(),i++) {
278 Standard_Boolean foundF(Standard_False);
279 const TopTools_ListOfShape& aListOfNew = splitTool.Modified(anIt.Value());
280 if(!aListOfNew.IsEmpty())
281 foundF = Standard_True;
283 TopTools_ListOfShape aList;
285 TopTools_ListIteratorOfListOfShape it(aListOfNew);
286 for(;it.More();it.Next())
287 aList.Append(it.Value());
288 /* *********************************************************************
289 // Bug in History: partition should give only modified entities! => temporary solution is used
290 //const TopTools_ListOfShape& aListOfGen = splitTool.Generated(anIt.Value());
291 //if(!aListOfGen.IsEmpty())
292 //foundF = Standard_True;
293 //it.Initialize(aListOfGen);
294 //for(;it.More();it.Next())
295 // aList.Append(it.Value());
296 ********************************************************************* */
297 if(!foundF) // face is not modified
298 aList.Append (anIt.Value());
299 aDM1.Add(anIt.Value(), aList);
300 #ifdef DEB_SPLIT_TO_ZONES
301 TCollection_AsciiString aName;
303 if(!anInputGroupList.isEmpty() ) { // 1
304 TopExp_Explorer exp (anIt.Value(), TopAbs_EDGE);
305 for (int j =1;exp.More();exp.Next(),j++) {
307 Standard_Boolean foundE(Standard_False);
308 const TopTools_ListOfShape& aListM = splitTool.Modified(exp.Current());
309 //cout << "NB_EDGE_M = " << aListM.Extent() <<endl;
310 if(aListM.Extent()) foundE = Standard_True;
311 it.Initialize(aListM);
312 for(int k=1;it.More();it.Next(),k++) {
313 aList.Append(it.Value());
314 #ifdef DEB_SPLIT_TO_ZONES
315 //aName = aNamM + i + j +k +".brep";
316 //BRepTools::Write(it.Value(),aName.ToCString());
319 /* *********************************************************************
320 //const TopTools_ListOfShape& aListG = splitTool.Generated(exp.Current());
321 //if(aListG.Extent()) foundE = Standard_True;
322 //it.Initialize(aListG);
323 //for(int k=1;it.More();it.Next(),k++)
324 //aList.Append(it.Value());
325 //cout << "NB_EDGE = " << aList.Extent() <<endl;
326 ************************************************************************** */
328 aList.Append (exp.Current());
329 #ifdef DEB_SPLIT_TO_ZONES
330 aName = aNamG + i + j +".brep";
331 BRepTools::Write(exp.Current(),aName.ToCString());
332 cout << aName.ToCString()<< " = " << exp.Current().TShape() <<endl;
335 aDM1.Add(exp.Current(), aList);
340 aResult = anInputSplitDataList.at(0).Shape; // get single input shape
343 // aDM2: NewShape ==> ListOfOldShapes
344 HYDROData_DataMapOfShapeListOfShape aDM2;
345 // make limiting face
346 HYDROData_DataMapOfShapeListOfShape aDM4;
347 Standard_Boolean hasLimits(Standard_False);
349 HYDROData_MapOfShape aBndView;
350 if (! thePolyline.IsNull()) {
351 const TopoDS_Wire aBndWire = TopoDS::Wire(thePolyline->GetShape());
352 if(!aBndWire.IsNull()) {
354 if(buildLimFace(aBndWire, limFace)) {
355 TopoDS_Shape aComResult;
356 BRepAlgoAPI_Common mkCom(aResult, limFace);
358 aComResult = mkCom.Shape();
359 BRepCheck_Analyzer aCheck (aComResult);
360 if(aCheck.IsValid()) {
361 #ifdef DEB_SPLIT_TO_ZONES
362 BRepTools::Write(aComResult,"CommonV.brep");
363 BRepTools::Write(limFace,"limFace.brep");
365 aBndName = thePolyline->GetName();
366 hasLimits = Standard_True; // DM2 should be filled here
367 TopExp_Explorer exp (limFace, TopAbs_EDGE);
368 for (int i =1;exp.More();exp.Next(),i++) {
369 const TopoDS_Shape& anEdge = exp.Current();
370 if(anEdge.IsNull()) continue;
371 aBndView.Add(anEdge);
372 QStringList aListOfNames;
373 aListOfNames.append(aBndName);
374 aDM3.Add(anEdge, aListOfNames);
375 TopTools_ListOfShape aList;
376 aList.Append(anEdge);
377 aDM1.Add(anEdge,aList);
379 HYDROData_MapOfShape aView;
380 exp.Init (aResult, TopAbs_FACE);
381 for (int i =1;exp.More();exp.Next(),i++) {
382 const TopoDS_Shape& aFace = exp.Current();
383 if(!aFace.IsNull()) {
384 const TopTools_ListOfShape& aListOfNew = mkCom.Modified(aFace);
385 //cout << "Modified: " << aListOfNew.Extent() <<endl;
386 if(!aListOfNew.IsEmpty()) {
387 aDM4.Add(aFace, aListOfNew);
388 #ifdef DEB_SPLIT_TO_ZONES
389 //TCollection_AsciiString aName = aNam + i + ".brep";
390 //BRepTools::Write(aListOfNew.Last(), aName.ToCString());
394 if(!mkCom.IsDeleted(aFace)) {
395 const TopTools_ListOfShape& aListOfGen = mkCom.Generated(aFace);
396 if(!aListOfGen.IsEmpty()) {
397 /* aDM4.Bind(aFace, aListOfGen); ??? */
398 #ifdef DEB_SPLIT_TO_ZONES
399 //TCollection_AsciiString aName = aNam + i + "g.brep";
400 //BRepTools::Write(aListOfGen.Last(), aName.ToCString());
404 TopTools_ListOfShape aList;
406 aDM4.Add(aFace, aList); //the same face - not modified
410 TopExp_Explorer exp2 (aFace, TopAbs_EDGE);
411 for (int j =1;exp2.More();exp2.Next(),j++) {
412 const TopoDS_Shape& anEdge = exp2.Current();
413 if(!anEdge.IsNull()) {
414 if(aView.Contains(anEdge)) continue;
416 const TopTools_ListOfShape& aListOfNewEd = mkCom.Modified(anEdge);
417 if(!aListOfNewEd.IsEmpty())
418 aDM4.Add(anEdge, aListOfNewEd);
420 if(!mkCom.IsDeleted(anEdge)) {
421 const TopTools_ListOfShape& aListOfGenEd = mkCom.Generated(anEdge);
422 if(!aListOfGenEd.IsEmpty()) {
423 /* aDM4.Bind(anEdge, aListOfGenEd); ???*/
425 TopTools_ListOfShape aList;
426 aList.Append(anEdge);
427 aDM4.Add(anEdge, aList);//the same edge - not modified
434 } //end DM4 filling (phase 1)
435 //cout << "DM4 Ext = " <<aDM4.Extent() <<endl;
436 // phase 2 (from tool)
437 #ifdef DEB_SPLIT_TO_ZONES
438 TCollection_AsciiString aNam("BndEd_");
440 TopExp_Explorer expt (limFace, TopAbs_EDGE);
441 for(int i =1;expt.More();expt.Next(),i++) {
442 const TopoDS_Shape& anEdge = expt.Current();
443 if(!anEdge.IsNull()) {
444 const TopTools_ListOfShape& aListOfNewEd = mkCom.Modified(anEdge);
445 #ifdef DEB_SPLIT_TO_ZONES
446 TopTools_ListIteratorOfListOfShape itl(aListOfNewEd);
447 for(int j=1;itl.More();itl.Next(),j++) {
448 TCollection_AsciiString aName = aNam + i + "_" + j + ".brep";
449 BRepTools::Write(itl.Value(), aName.ToCString());
450 cout <<aName.ToCString()<<" = "<< itl.Value().TShape() <<endl;
453 if(!aListOfNewEd.IsEmpty())
454 aDM4.Add(anEdge, aListOfNewEd);
456 if(!mkCom.IsDeleted(anEdge)) {
457 const TopTools_ListOfShape& aListOfGenEd = mkCom.Generated(anEdge);
458 if(!aListOfGenEd.IsEmpty()) {
459 /* aDM4.Bind(anEdge, aListOfGenEd); ??? */
461 TopTools_ListOfShape aList;
462 aList.Append(anEdge);
463 aDM4.Add(anEdge, aList);//the same edge - not modified
469 //cout << "DM4 Ext = " <<aDM4.Extent() <<endl;
471 // fill DM1 (old - new) and DM2 (new - old)
472 HYDROData_DataMapIteratorOfDataMapOfShapeListOfShape mIt(aDM4);
473 for(;mIt.More();mIt.Next()) {
474 const TopoDS_Shape& aKey = mIt.Key();//old
475 TopTools_ListOfShape aList;
477 const TopTools_ListOfShape& aListOfNew = mIt.Value();
478 aDM1.Add(aKey, aListOfNew);
479 TopTools_ListIteratorOfListOfShape it(aListOfNew);
480 for(;it.More();it.Next()) {
481 if(!aDM2.Contains(it.Value()))
482 aDM2.Add(it.Value(), aList);
484 TopTools_ListOfShape& aList = aDM2.ChangeFromKey(it.Value());
490 HYDROData_DataMapIteratorOfDataMapOfShapeListOfShape aMIt(aDM1);
491 //DM4 contains Old - New after common op. DM1: old - new after Split op.
492 for(;aMIt.More();aMIt.Next()) {
493 const TopoDS_Shape& aKey = aMIt.Key();
494 TopTools_ListOfShape aList;
496 const TopTools_ListOfShape& aListOfNew = aMIt.Value();
497 TopTools_ListIteratorOfListOfShape it(aListOfNew);
498 for(;it.More();it.Next()) {// iterate new: b1, b2, b3...
499 if(!aDM4.Contains(it.Value())) // bi - is deleted
500 continue; // go to the next bi
502 const TopTools_ListOfShape& aListOfNew4 = aDM4.FindFromKey(it.Value());
503 TopTools_ListIteratorOfListOfShape it4(aListOfNew4); // {c1, c2, c3,...}
504 for(;it4.More();it4.Next()) {
505 if(!aDM2.Contains(it4.Value()))
506 aDM2.Add(it4.Value(), aList);
508 TopTools_ListOfShape& aList = aDM2.ChangeFromKey(it4.Value());
517 hasLimits = Standard_False;
518 #ifdef DEB_SPLIT_TO_ZONES
519 BRepTools::Write(aComResult,"CommonNV.brep");
525 }// end limits processing
527 HYDROData_DataMapIteratorOfDataMapOfShapeListOfShape aMIt(aDM1);
528 for(;aMIt.More();aMIt.Next()) {
529 const TopoDS_Shape& aKey = aMIt.Key();
530 TopTools_ListOfShape aList;
532 const TopTools_ListOfShape& aListOfNew = aMIt.Value();
533 TopTools_ListIteratorOfListOfShape it(aListOfNew);
534 for(;it.More();it.Next()) {
535 if(!aDM2.Contains(it.Value()))
536 aDM2.Add(it.Value(), aList);
538 TopTools_ListOfShape& aList = aDM2.ChangeFromKey(it.Value());
544 // Step 4. Fill output structure.
545 #ifdef DEB_SPLIT_TO_ZONES
546 TCollection_AsciiString aNam4 ("SC_");
548 HYDROData_DataMapIteratorOfDataMapOfShapeListOfShape aMIt(aDM2);
549 for(int i =1;aMIt.More();aMIt.Next(),i++) {
550 SplitData aDestSplitData;
551 const TopoDS_Shape& aKey = aMIt.Key(); //new
552 aDestSplitData.Shape = aKey;
553 if(aKey.ShapeType() == TopAbs_FACE)
554 aDestSplitData.Type = SplitData::Data_Zone;
556 aDestSplitData.Type = SplitData::Data_Edge;
557 #ifdef DEB_SPLIT_TO_ZONES
558 TCollection_AsciiString aName = aNam4 + i + ".brep";
559 BRepTools::Write(aKey,aName.ToCString());
563 QStringList aListOfNames; // names processing
564 const TopTools_ListOfShape& aListOfOld = aMIt.Value();
565 TopTools_ListIteratorOfListOfShape it(aListOfOld);
566 for(int j =1;it.More();it.Next(),j++) {
567 const TopoDS_Shape& aSh = it.Value(); //old
568 if(aDM3.Contains(aSh)) {
569 const QStringList& ObjectNames = aDM3.FindFromKey(aSh);
570 aListOfNames.append(ObjectNames);
571 #ifdef DEB_SPLIT_TO_ZONES
572 TCollection_AsciiString aName = aNam4 + i +"_" + j + ".brep";
573 BRepTools::Write(aSh ,aName.ToCString());
576 #ifdef DEB_SPLIT_TO_ZONES
577 TCollection_AsciiString aName = aNam4 +"__" + i +"_" + j + ".brep";
578 BRepTools::Write(aSh ,aName.ToCString());
579 cout <<aName.ToCString()<<" = "<< aSh.TShape() <<endl;
581 if(aBndView.Contains(aSh) && hasLimits) {
582 aListOfNames.append(aBndName);
583 #ifdef DEB_SPLIT_TO_ZONES
584 cout << " BndName = "<<aBndName.toStdString() <<endl;
590 aDestSplitData.ObjectNames = aListOfNames;
591 anOutputSplitDataList.append(aDestSplitData);
592 #ifdef DEB_SPLIT_TO_ZONES
593 QString aStr = aDestSplitData.ObjectNames.join(" ");
594 cout << "New# = " << i<< " Names = "<<aStr.toStdString() << " size = " <<aDestSplitData.ObjectNames.size() <<endl;
598 return anOutputSplitDataList;
601 HYDROData_SplitToZonesTool::SplitDataList
602 HYDROData_SplitToZonesTool::Split( const HYDROData_SequenceOfObjects& theObjectList )
604 HYDROData_SequenceOfObjects aGeomGroups;
605 Handle(HYDROData_PolylineXY) aPolyline;
607 return Split( theObjectList, aGeomGroups, aPolyline );