1 // Copyright (C) 2007-2019 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // File: GEOMAlgo_VertexSolid.cxx
24 // Created: Wed Jan 12 16:36:40 2005
25 // Author: Peter KURNEV
28 #include <GEOMAlgo_VertexSolid.hxx>
32 #include <TopAbs_ShapeEnum.hxx>
33 #include <TopAbs_State.hxx>
35 #include <TopTools_ListIteratorOfListOfShape.hxx>
36 #include <TopTools_ListOfShape.hxx>
37 #include <TopTools_IndexedMapOfShape.hxx>
40 #include <TopoDS_Solid.hxx>
41 #include <TopoDS_Vertex.hxx>
45 #include <BRep_Tool.hxx>
46 #include <BRepClass3d_SolidClassifier.hxx>
48 #include <TopTools_ListOfShape.hxx>
49 #include <IntTools_Context.hxx>
51 #include <BOPDS_DS.hxx>
52 #include <BOPDS_IndexRange.hxx>
53 #include <BOPDS_VectorOfInterfVV.hxx>
54 #include <BOPDS_VectorOfInterfVE.hxx>
55 #include <BOPDS_VectorOfInterfVF.hxx>
56 #include <BOPDS_Interf.hxx>
58 //=======================================================================
59 //function : GEOMAlgo_VertexSolid
61 //=======================================================================
62 GEOMAlgo_VertexSolid::GEOMAlgo_VertexSolid()
67 //=======================================================================
70 //=======================================================================
71 GEOMAlgo_VertexSolid::~GEOMAlgo_VertexSolid()
74 //=======================================================================
77 //=======================================================================
78 void GEOMAlgo_VertexSolid::Perform()
83 if (myDSFiller==NULL) {
87 if(myDSFiller->HasErrors()) {
92 Standard_Integer aNbF, aNbArgs;
93 TopTools_IndexedMapOfShape aM;
95 const BOPDS_DS& aDS=myDSFiller->DS();
96 const TopTools_ListOfShape& aLS=aDS.Arguments();
103 const TopoDS_Shape& aObj=aLS.First();
105 TopExp::MapShapes(aObj, TopAbs_FACE, aM);
107 myRank=(aNbF) ? 1 : 0;
112 catch (Standard_Failure) {
116 //=======================================================================
117 // function: BuildResult
119 //=======================================================================
120 void GEOMAlgo_VertexSolid::BuildResult()
122 Standard_Integer i, iBeg, iEnd, aNbVV, aNbVE, aNbVF, j, iFound;//, aNbRanges;
125 TopAbs_ShapeEnum aType;
132 const BOPDS_DS& aDS=myDSFiller->DS();
133 BOPDS_DS* pDS=(BOPDS_DS*)&aDS;
135 BOPDS_VectorOfInterfVV& aVVs=pDS->InterfVV();
136 BOPDS_VectorOfInterfVE& aVEs=pDS->InterfVE();
137 BOPDS_VectorOfInterfVF& aVFs=pDS->InterfVF();
139 const TopTools_ListOfShape& aLS=aDS.Arguments();
140 const TopoDS_Shape& aObj=aLS.First();
142 const TopoDS_Shape& aTool=aLS.Last();
143 const TopoDS_Solid& aSolid=(myRank==0) ? TopoDS::Solid(aTool) : TopoDS::Solid(aObj);
145 Handle(IntTools_Context) aCtx=myDSFiller->Context();
146 BRepClass3d_SolidClassifier& aSC=aCtx->SolidClassifier(aSolid);
148 //aNbRanges=aDS.NbRanges();
149 const BOPDS_IndexRange& aRange=aDS.Range(myRank);
150 aRange.Indices(iBeg, iEnd);
152 for (i=iBeg; i<=iEnd; ++i) {
153 const TopoDS_Shape& aS=aDS.Shape(i);
154 aType=aS.ShapeType();
155 if (aType!=TopAbs_VERTEX) {
159 const TopoDS_Vertex& aV=TopoDS::Vertex(aS);
165 for (j=0; j<aNbVV; ++j) {
166 BOPDS_InterfVV& aVV=aVVs(j);
167 if (aVV.Contains(i)) {
178 for (j=0; j<aNbVE; ++j) {
179 BOPDS_InterfVE& aVE=aVEs(j);
180 if (aVE.Contains(i)) {
191 for (j=0; j<aNbVF; ++j) {
192 BOPDS_InterfVF& aVF=aVFs(j);
193 if (aVF.Contains(i)) {
204 aP3D=BRep_Tool::Pnt(aV);
206 aSC.Perform(aP3D, aTol);
208 if (aSt==TopAbs_IN) {
211 else if (aSt==TopAbs_OUT) {
214 }//for (i=iBeg; i<iEnd; ++i) {