// Created on: 1995-09-12 // Created by: Jean Yves LEBEY // Copyright (c) 1995-1999 Matra Datavision // Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #ifndef TopOpeBRepBuild_SplitSolid_INCLUDED #define TopOpeBRepBuild_SplitSolid_INCLUDED #include #include #include #ifdef OCCT_DEBUG #define DEBSHASET(sarg,meth,shaset,str) TCollection_AsciiString sarg((meth));(sarg)=(sarg)+(shaset).DEBNumber()+(str); Standard_EXPORT Standard_Boolean TopOpeBRepDS_GettraceSTRANGE(); Standard_EXPORT void debsplitf(const Standard_Integer i); Standard_EXPORT void debspanc(const Standard_Integer i); //Standard_IMPORT extern Standard_Integer GLOBAL_iexF; Standard_IMPORT Standard_Integer GLOBAL_iexF; #endif //======================================================================= //function : SplitSolid //purpose : //======================================================================= void TopOpeBRepBuild_Builder::SplitSolid(const TopoDS_Shape& S1oriented, const TopAbs_State ToBuild1, const TopAbs_State ToBuild2) { //modified by IFV for treating shell Standard_Boolean tosplit = Standard_False; Standard_Boolean IsShell = (S1oriented.ShapeType() == TopAbs_SHELL); if(IsShell) { TopExp_Explorer ex; ex.Init(S1oriented, TopAbs_FACE); for (; ex.More(); ex.Next()) { const TopoDS_Shape& sh = ex.Current(); tosplit = ToSplit(sh,ToBuild1); if(tosplit) break; } } else tosplit = ToSplit(S1oriented,ToBuild1); if ( ! tosplit ) return; // end IFV Standard_Boolean RevOri1 = Reverse(ToBuild1,ToBuild2); Standard_Boolean RevOri2 = Reverse(ToBuild2,ToBuild1); Standard_Boolean ConnectTo1 = Standard_True; Standard_Boolean ConnectTo2 = Standard_False; // work on a FORWARD solid TopoDS_Shape S1forward = S1oriented; myBuildTool.Orientation(S1forward,TopAbs_FORWARD); // build the list of solids to split : LS1, LS2 TopTools_ListOfShape LS1,LS2; LS1.Append(S1forward); FindSameDomain(LS1,LS2); Standard_Integer n1 = LS1.Extent(); Standard_Integer n2 = LS2.Extent(); if (!n2) RevOri1 = Standard_False; if (!n1) RevOri2 = Standard_False; // Create a face set connected by edges // ----------------------------------------- TopOpeBRepBuild_ShellFaceSet SFS; #ifdef OCCT_DEBUG Standard_Boolean tSPS = TopOpeBRepBuild_GettraceSPS(); // Standard_Integer iSolid = myDataStructure->Shape(S1oriented); if (tSPS) { cout<NbSurfaces() > 0) { TopOpeBRepDS_SurfaceIterator SSurfaces = myDataStructure->SolidSurfaces(S1forward); for (; SSurfaces.More(); SSurfaces.Next()) { Standard_Integer iS = SSurfaces.Current(); const TopTools_ListOfShape& LnewF = NewFaces(iS); for (TopTools_ListIteratorOfListOfShape Iti(LnewF); Iti.More(); Iti.Next()) { TopoDS_Shape aFace = Iti.Value(); TopAbs_Orientation ori = SSurfaces.Orientation(ToBuild1); myBuildTool.Orientation(aFace,ori); #ifdef OCCT_DEBUG if (tSPS){ DEBSHASET(ss,"--- SplitSolid ",SFS," AddElement SFS+ face "); GdumpSHA(aFace,(Standard_Address)ss.ToCString()); cout<<" ";TopAbs::Print(ToBuild1,cout)<<" : 1 face "; TopAbs::Print(ori,cout); cout< as solids built on LS1 solids // -------------------------------------------------------------------- for (itLS1.Initialize(LS1); itLS1.More(); itLS1.Next()) { TopoDS_Shape Scur = itLS1.Value(); MarkSplit(Scur,ToBuild1); TopTools_ListOfShape& SL = ChangeSplit(Scur,ToBuild1); if ( ConnectTo1 ) SL = SolidList; } // connect list of new solids as solids built on LS2 solids // -------------------------------------------------------------------- for (itLS2.Initialize(LS2); itLS2.More(); itLS2.Next()) { TopoDS_Shape Scur = itLS2.Value(); MarkSplit(Scur,ToBuild2); TopTools_ListOfShape& SL = ChangeSplit(Scur,ToBuild2); if ( ConnectTo2 ) SL = SolidList; } } // SplitSolid //#ifndef TopOpeBRepBuild_SplitSolid_INCLUDED #endif