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 Handle(TopTools_HSequenceOfShape) aConnectedWires = new TopTools_HSequenceOfShape;
352 int nbWires = thePolyline->GetNbConnectedWires(aConnectedWires);
353 const TopoDS_Wire aBndWire = TopoDS::Wire(aConnectedWires->Value(1));
354 if(!aBndWire.IsNull()) {
356 if(buildLimFace(aBndWire, limFace)) {
357 TopoDS_Shape aComResult;
358 BRepAlgoAPI_Common mkCom(aResult, limFace);
360 aComResult = mkCom.Shape();
361 BRepCheck_Analyzer aCheck (aComResult);
362 if(aCheck.IsValid()) {
363 #ifdef DEB_SPLIT_TO_ZONES
364 BRepTools::Write(aComResult,"CommonV.brep");
365 BRepTools::Write(limFace,"limFace.brep");
367 aBndName = thePolyline->GetName();
368 hasLimits = Standard_True; // DM2 should be filled here
369 TopExp_Explorer exp (limFace, TopAbs_EDGE);
370 for (int i =1;exp.More();exp.Next(),i++) {
371 const TopoDS_Shape& anEdge = exp.Current();
372 if(anEdge.IsNull()) continue;
373 aBndView.Add(anEdge);
374 QStringList aListOfNames;
375 aListOfNames.append(aBndName);
376 aDM3.Add(anEdge, aListOfNames);
377 TopTools_ListOfShape aList;
378 aList.Append(anEdge);
379 aDM1.Add(anEdge,aList);
381 HYDROData_MapOfShape aView;
382 exp.Init (aResult, TopAbs_FACE);
383 for (int i =1;exp.More();exp.Next(),i++) {
384 const TopoDS_Shape& aFace = exp.Current();
385 if(!aFace.IsNull()) {
386 const TopTools_ListOfShape& aListOfNew = mkCom.Modified(aFace);
387 //cout << "Modified: " << aListOfNew.Extent() <<endl;
388 if(!aListOfNew.IsEmpty()) {
389 aDM4.Add(aFace, aListOfNew);
390 #ifdef DEB_SPLIT_TO_ZONES
391 //TCollection_AsciiString aName = aNam + i + ".brep";
392 //BRepTools::Write(aListOfNew.Last(), aName.ToCString());
396 if(!mkCom.IsDeleted(aFace)) {
397 const TopTools_ListOfShape& aListOfGen = mkCom.Generated(aFace);
398 if(!aListOfGen.IsEmpty()) {
399 /* aDM4.Bind(aFace, aListOfGen); ??? */
400 #ifdef DEB_SPLIT_TO_ZONES
401 //TCollection_AsciiString aName = aNam + i + "g.brep";
402 //BRepTools::Write(aListOfGen.Last(), aName.ToCString());
406 TopTools_ListOfShape aList;
408 aDM4.Add(aFace, aList); //the same face - not modified
412 TopExp_Explorer exp2 (aFace, TopAbs_EDGE);
413 for (int j =1;exp2.More();exp2.Next(),j++) {
414 const TopoDS_Shape& anEdge = exp2.Current();
415 if(!anEdge.IsNull()) {
416 if(aView.Contains(anEdge)) continue;
418 const TopTools_ListOfShape& aListOfNewEd = mkCom.Modified(anEdge);
419 if(!aListOfNewEd.IsEmpty())
420 aDM4.Add(anEdge, aListOfNewEd);
422 if(!mkCom.IsDeleted(anEdge)) {
423 const TopTools_ListOfShape& aListOfGenEd = mkCom.Generated(anEdge);
424 if(!aListOfGenEd.IsEmpty()) {
425 /* aDM4.Bind(anEdge, aListOfGenEd); ???*/
427 TopTools_ListOfShape aList;
428 aList.Append(anEdge);
429 aDM4.Add(anEdge, aList);//the same edge - not modified
436 } //end DM4 filling (phase 1)
437 //cout << "DM4 Ext = " <<aDM4.Extent() <<endl;
438 // phase 2 (from tool)
439 #ifdef DEB_SPLIT_TO_ZONES
440 TCollection_AsciiString aNam("BndEd_");
442 TopExp_Explorer expt (limFace, TopAbs_EDGE);
443 for(int i =1;expt.More();expt.Next(),i++) {
444 const TopoDS_Shape& anEdge = expt.Current();
445 if(!anEdge.IsNull()) {
446 const TopTools_ListOfShape& aListOfNewEd = mkCom.Modified(anEdge);
447 #ifdef DEB_SPLIT_TO_ZONES
448 TopTools_ListIteratorOfListOfShape itl(aListOfNewEd);
449 for(int j=1;itl.More();itl.Next(),j++) {
450 TCollection_AsciiString aName = aNam + i + "_" + j + ".brep";
451 BRepTools::Write(itl.Value(), aName.ToCString());
452 cout <<aName.ToCString()<<" = "<< itl.Value().TShape() <<endl;
455 if(!aListOfNewEd.IsEmpty())
456 aDM4.Add(anEdge, aListOfNewEd);
458 if(!mkCom.IsDeleted(anEdge)) {
459 const TopTools_ListOfShape& aListOfGenEd = mkCom.Generated(anEdge);
460 if(!aListOfGenEd.IsEmpty()) {
461 /* aDM4.Bind(anEdge, aListOfGenEd); ??? */
463 TopTools_ListOfShape aList;
464 aList.Append(anEdge);
465 aDM4.Add(anEdge, aList);//the same edge - not modified
471 //cout << "DM4 Ext = " <<aDM4.Extent() <<endl;
473 // fill DM1 (old - new) and DM2 (new - old)
474 HYDROData_DataMapIteratorOfDataMapOfShapeListOfShape mIt(aDM4);
475 for(;mIt.More();mIt.Next()) {
476 const TopoDS_Shape& aKey = mIt.Key();//old
477 TopTools_ListOfShape aList;
479 const TopTools_ListOfShape& aListOfNew = mIt.Value();
480 aDM1.Add(aKey, aListOfNew);
481 TopTools_ListIteratorOfListOfShape it(aListOfNew);
482 for(;it.More();it.Next()) {
483 if(!aDM2.Contains(it.Value()))
484 aDM2.Add(it.Value(), aList);
486 TopTools_ListOfShape& aList = aDM2.ChangeFromKey(it.Value());
492 HYDROData_DataMapIteratorOfDataMapOfShapeListOfShape aMIt(aDM1);
493 //DM4 contains Old - New after common op. DM1: old - new after Split op.
494 for(;aMIt.More();aMIt.Next()) {
495 const TopoDS_Shape& aKey = aMIt.Key();
496 TopTools_ListOfShape aList;
498 const TopTools_ListOfShape& aListOfNew = aMIt.Value();
499 TopTools_ListIteratorOfListOfShape it(aListOfNew);
500 for(;it.More();it.Next()) {// iterate new: b1, b2, b3...
501 if(!aDM4.Contains(it.Value())) // bi - is deleted
502 continue; // go to the next bi
504 const TopTools_ListOfShape& aListOfNew4 = aDM4.FindFromKey(it.Value());
505 TopTools_ListIteratorOfListOfShape it4(aListOfNew4); // {c1, c2, c3,...}
506 for(;it4.More();it4.Next()) {
507 if(!aDM2.Contains(it4.Value()))
508 aDM2.Add(it4.Value(), aList);
510 TopTools_ListOfShape& aList = aDM2.ChangeFromKey(it4.Value());
519 hasLimits = Standard_False;
520 #ifdef DEB_SPLIT_TO_ZONES
521 BRepTools::Write(aComResult,"CommonNV.brep");
527 }// end limits processing
529 HYDROData_DataMapIteratorOfDataMapOfShapeListOfShape aMIt(aDM1);
530 for(;aMIt.More();aMIt.Next()) {
531 const TopoDS_Shape& aKey = aMIt.Key();
532 TopTools_ListOfShape aList;
534 const TopTools_ListOfShape& aListOfNew = aMIt.Value();
535 TopTools_ListIteratorOfListOfShape it(aListOfNew);
536 for(;it.More();it.Next()) {
537 if(!aDM2.Contains(it.Value()))
538 aDM2.Add(it.Value(), aList);
540 TopTools_ListOfShape& aList = aDM2.ChangeFromKey(it.Value());
546 // Step 4. Fill output structure.
547 #ifdef DEB_SPLIT_TO_ZONES
548 TCollection_AsciiString aNam4 ("SC_");
550 HYDROData_DataMapIteratorOfDataMapOfShapeListOfShape aMIt(aDM2);
551 for(int i =1;aMIt.More();aMIt.Next(),i++) {
552 SplitData aDestSplitData;
553 const TopoDS_Shape& aKey = aMIt.Key(); //new
554 aDestSplitData.Shape = aKey;
555 if(aKey.ShapeType() == TopAbs_FACE)
556 aDestSplitData.Type = SplitData::Data_Zone;
558 aDestSplitData.Type = SplitData::Data_Edge;
559 #ifdef DEB_SPLIT_TO_ZONES
560 TCollection_AsciiString aName = aNam4 + i + ".brep";
561 BRepTools::Write(aKey,aName.ToCString());
565 QStringList aListOfNames; // names processing
566 const TopTools_ListOfShape& aListOfOld = aMIt.Value();
567 TopTools_ListIteratorOfListOfShape it(aListOfOld);
568 for(int j =1;it.More();it.Next(),j++) {
569 const TopoDS_Shape& aSh = it.Value(); //old
570 if(aDM3.Contains(aSh)) {
571 const QStringList& ObjectNames = aDM3.FindFromKey(aSh);
572 aListOfNames.append(ObjectNames);
573 #ifdef DEB_SPLIT_TO_ZONES
574 TCollection_AsciiString aName = aNam4 + i +"_" + j + ".brep";
575 BRepTools::Write(aSh ,aName.ToCString());
578 #ifdef DEB_SPLIT_TO_ZONES
579 TCollection_AsciiString aName = aNam4 +"__" + i +"_" + j + ".brep";
580 BRepTools::Write(aSh ,aName.ToCString());
581 cout <<aName.ToCString()<<" = "<< aSh.TShape() <<endl;
583 if(aBndView.Contains(aSh) && hasLimits) {
584 aListOfNames.append(aBndName);
585 #ifdef DEB_SPLIT_TO_ZONES
586 cout << " BndName = "<<aBndName.toStdString() <<endl;
592 aDestSplitData.ObjectNames = aListOfNames;
593 anOutputSplitDataList.append(aDestSplitData);
594 #ifdef DEB_SPLIT_TO_ZONES
595 QString aStr = aDestSplitData.ObjectNames.join(" ");
596 cout << "New# = " << i<< " Names = "<<aStr.toStdString() << " size = " <<aDestSplitData.ObjectNames.size() <<endl;
600 return anOutputSplitDataList;
603 HYDROData_SplitToZonesTool::SplitDataList
604 HYDROData_SplitToZonesTool::Split( const HYDROData_SequenceOfObjects& theObjectList )
606 HYDROData_SequenceOfObjects aGeomGroups;
607 Handle(HYDROData_PolylineXY) aPolyline;
609 return Split( theObjectList, aGeomGroups, aPolyline );