1 // Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
9 // This library is distributed in the hope that it will be useful
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 // File: NMTTools_CommonBlock.cxx
21 // Created: Tue Dec 9 12:23:29 2003
22 // Author: Peter KURNEV
26 #include <NMTTools_CommonBlock.ixx>
28 #include <BOPTools_ListIteratorOfListOfPaveBlock.hxx>
29 #include <TColStd_ListIteratorOfListOfInteger.hxx>
31 //=======================================================================
32 // function: NMTTools_CommonBlock::NMTTools_CommonBlock()
34 //=======================================================================
35 NMTTools_CommonBlock::NMTTools_CommonBlock()
38 //=======================================================================
39 // function: AddPaveBlock
41 //=======================================================================
42 void NMTTools_CommonBlock::AddPaveBlock(const BOPTools_PaveBlock& aPB)
44 myPaveBlocks.Append(aPB);
46 //=======================================================================
49 //=======================================================================
50 void NMTTools_CommonBlock::AddFace(const Standard_Integer aF)
54 //=======================================================================
57 //=======================================================================
58 void NMTTools_CommonBlock::AddFaces(const TColStd_ListOfInteger& aLF)
60 TColStd_ListIteratorOfListOfInteger aIt(aLF);
62 for (; aIt.More(); aIt.Next()) {
63 myFaces.Append(aIt.Value());
66 //=======================================================================
67 // function: PaveBlocks
69 //=======================================================================
70 const BOPTools_ListOfPaveBlock& NMTTools_CommonBlock::PaveBlocks()const
74 //=======================================================================
77 //=======================================================================
78 const TColStd_ListOfInteger& NMTTools_CommonBlock::Faces()const
82 //=======================================================================
83 // function: PaveBlock1
85 //=======================================================================
86 const BOPTools_PaveBlock& NMTTools_CommonBlock::PaveBlock1()const
88 return myPaveBlocks.First();
90 //=======================================================================
91 // function: PaveBlock1
93 //=======================================================================
94 BOPTools_PaveBlock& NMTTools_CommonBlock::PaveBlock1(const Standard_Integer aIx)
96 return PaveBlockOnEdge(aIx);
98 //=======================================================================
99 // function: PaveBlockOnEdge
101 //=======================================================================
102 BOPTools_PaveBlock& NMTTools_CommonBlock::PaveBlockOnEdge(const Standard_Integer aIx)
104 static BOPTools_PaveBlock aPBs;
105 Standard_Integer aIOr;
106 BOPTools_ListIteratorOfListOfPaveBlock anIt(myPaveBlocks);
108 for (; anIt.More(); anIt.Next()) {
109 BOPTools_PaveBlock& aPB=anIt.Value();
110 aIOr=aPB.OriginalEdge();
117 //=======================================================================
118 // function: IsPaveBlockOnFace
120 //=======================================================================
121 Standard_Boolean NMTTools_CommonBlock::IsPaveBlockOnFace(const Standard_Integer aIx)const
123 Standard_Boolean bFound=Standard_False;
125 TColStd_ListIteratorOfListOfInteger anIt(myFaces);
127 for (; anIt.More(); anIt.Next()) {
135 //=======================================================================
136 // function: IsPaveBlockOnEdge
138 //=======================================================================
139 Standard_Boolean NMTTools_CommonBlock::IsPaveBlockOnEdge(const Standard_Integer aIx)const
141 Standard_Boolean bFound=Standard_False;
142 Standard_Integer aIOr;
143 BOPTools_ListIteratorOfListOfPaveBlock anIt(myPaveBlocks);
145 for (; anIt.More(); anIt.Next()) {
146 const BOPTools_PaveBlock& aPB=anIt.Value();
147 aIOr=aPB.OriginalEdge();
154 //=======================================================================
157 //=======================================================================
158 Standard_Boolean NMTTools_CommonBlock::IsEqual(const NMTTools_CommonBlock& aOther)const
160 Standard_Boolean bFound=Standard_True;
161 Standard_Integer aNb1, aNb2;
162 BOPTools_ListIteratorOfListOfPaveBlock anIt;
164 aNb1=myPaveBlocks.Extent();
165 aNb2=aOther.myPaveBlocks.Extent();
167 if (!aNb1 && !aNb2) {
177 const BOPTools_PaveBlock& aPB=PaveBlock1();
179 anIt.Initialize(aOther.myPaveBlocks);
180 for (; anIt.More(); anIt.Next()) {
181 const BOPTools_PaveBlock& aPBOther=anIt.Value();
182 if (aPB.IsEqual(aPBOther)){
188 //=======================================================================
189 // function: Contains
191 //=======================================================================
192 Standard_Boolean NMTTools_CommonBlock::Contains(const BOPTools_PaveBlock& aPBx)const
194 Standard_Boolean bFound=Standard_False;
195 Standard_Integer aNb1;
196 BOPTools_ListIteratorOfListOfPaveBlock anIt;
198 aNb1=myPaveBlocks.Extent();
204 anIt.Initialize(myPaveBlocks);
205 for (; anIt.More(); anIt.Next()) {
206 const BOPTools_PaveBlock& aPB=anIt.Value();
207 if (aPB.IsEqual(aPBx)) {
214 //=======================================================================
217 //=======================================================================
218 void NMTTools_CommonBlock::SetEdge(const Standard_Integer anEdge)
220 BOPTools_ListIteratorOfListOfPaveBlock anIt;
222 anIt.Initialize(myPaveBlocks);
223 for (; anIt.More(); anIt.Next()) {
224 BOPTools_PaveBlock& aPB=anIt.Value();
228 //=======================================================================
231 //=======================================================================
232 Standard_Integer NMTTools_CommonBlock::Edge()const
234 Standard_Integer aNb;
236 aNb=myPaveBlocks.Extent();
242 const BOPTools_PaveBlock& aPB=PaveBlock1();