summaryrefslogtreecommitdiff
path: root/src/BOPTools/BOPTools_SSInterference.cxx
blob: e58134578960d9b0651d66dcd45ec80131a103f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
// File:	BOPTools_SSInterference.cxx
// Created:	Tue Nov 21 15:29:28 2000
// Author:	Peter KURNEV
//		<pkv@irinox>


#include <BOPTools_SSInterference.ixx>

#include <IntTools_Curve.hxx>
#include <IntTools_SequenceOfCurves.hxx>
#include <IntTools_Tools.hxx>
#include <IntTools_PntOn2Faces.hxx>

#include <BOPTools_Curve.hxx>
//
//modified by NIZNHY-PKV Fri Jun 30 10:08:51 2006
#include <TopTools_ListIteratorOfListOfShape.hxx>
#include <TopoDS_Shape.hxx>
#include <TColStd_ListOfInteger.hxx>
#include <TColStd_ListIteratorOfListOfInteger.hxx>


//=======================================================================
//function :  BOPTools_SSInterference
//purpose  : 
//=======================================================================
  BOPTools_SSInterference::BOPTools_SSInterference()
:
  BOPTools_ShapeShapeInterference(0, 0),
  myTangentFacesFlag(Standard_False),
  mySenseFlag(0)
{}

//=======================================================================
//function :  BOPTools_SSInterference::BOPTools_SSInterference
//purpose  : 
//=======================================================================
  BOPTools_SSInterference::BOPTools_SSInterference
  (const Standard_Integer anIndex1,
   const Standard_Integer anIndex2,
   const Standard_Real aTolR3D,
   const Standard_Real aTolR2D,
   const IntTools_SequenceOfCurves& aCvs,
   const IntTools_SequenceOfPntOn2Faces& aPnts)
:  
  BOPTools_ShapeShapeInterference(anIndex1, anIndex2),
  myTangentFacesFlag(Standard_False),
  mySenseFlag(0)
{
  myTolR3D=aTolR3D;
  myTolR2D=aTolR2D;
  
  myCurves.Clear();
  Standard_Integer i, aNbCurves;
  aNbCurves=aCvs.Length();
  for (i=1; i<=aNbCurves; i++) {
    const IntTools_Curve& aIC=aCvs(i);
    BOPTools_Curve aBC(aIC);
    myCurves.Append(aBC);
  }
  //
  SetAlonePnts(aPnts);
}
//=======================================================================
//function :  AppendBlock
//purpose  : 
//=======================================================================
  void BOPTools_SSInterference::AppendBlock(const BOPTools_PaveBlock& aPB) 
{
  myPBs.Append(aPB);
}

//=======================================================================
//function :  PaveBlocks
//purpose  : 
//=======================================================================
  const BOPTools_ListOfPaveBlock& BOPTools_SSInterference::PaveBlocks() const
{
  return myPBs;
}

//=======================================================================
//function :  TolR3D
//purpose  : 
//=======================================================================
  Standard_Real BOPTools_SSInterference::TolR3D() const
{
  return myTolR3D;
}

//=======================================================================
//function :  TolR2D
//purpose  : 
//=======================================================================
  Standard_Real BOPTools_SSInterference::TolR2D() const
{
  return myTolR2D;
}

//=======================================================================
//function :  Curves
//purpose  : 
//=======================================================================
  BOPTools_SequenceOfCurves& BOPTools_SSInterference::Curves() 
{
  return myCurves;
}

//=======================================================================
//function :  NewPaveSet
//purpose  : 
//=======================================================================
  BOPTools_PaveSet& BOPTools_SSInterference::NewPaveSet() 
{
  return myNewPaveSet;
}

//=======================================================================
//function :  SetTangentFacesFlag
//purpose  : 
//=======================================================================
  void BOPTools_SSInterference::SetTangentFacesFlag(const Standard_Boolean aFlag) 
{
  myTangentFacesFlag=aFlag;
}
//=======================================================================
//function :  IsTangentFaces
//purpose  : 
//=======================================================================
  Standard_Boolean BOPTools_SSInterference::IsTangentFaces()const 
{
  return myTangentFacesFlag;
}

//=======================================================================
// function: SetSenseFlag
// purpose: 
//=======================================================================
  void BOPTools_SSInterference::SetSenseFlag (const Standard_Integer iFlag)
				 
{
   mySenseFlag=iFlag;
}
//=======================================================================
// function: SenseFlag
// purpose: 
//=======================================================================
  Standard_Integer BOPTools_SSInterference::SenseFlag () const
				 
{
   return mySenseFlag;
}
//=======================================================================
// function: SetStatesMap
// purpose: 
//=======================================================================
  void BOPTools_SSInterference::SetStatesMap (const BOPTools_IndexedDataMapOfIntegerState& aMap)
{
  myStatesMap=aMap;
}
//=======================================================================
// function: StatesMap
// purpose: 
//=======================================================================
  const BOPTools_IndexedDataMapOfIntegerState& BOPTools_SSInterference::StatesMap () const
{
  return myStatesMap;
}

//=======================================================================
// function: SetAlonePnts
// purpose: 
//=======================================================================
  void BOPTools_SSInterference::SetAlonePnts (const IntTools_SequenceOfPntOn2Faces& aPnts)
{
  Standard_Integer i, aNb;
  myAlonePnts.Clear();

  aNb=aPnts.Length();
  for (i=1; i<=aNb; ++i) {
    const IntTools_PntOn2Faces& aPntOn2Faces=aPnts(i);
    myAlonePnts.Append(aPntOn2Faces);
  }
}

//=======================================================================
// function: AlonePnts
// purpose: 
//=======================================================================
  const IntTools_SequenceOfPntOn2Faces& BOPTools_SSInterference::AlonePnts ()const 
{
  return myAlonePnts;
}

//=======================================================================
// function: AloneVertices
// purpose: 
//=======================================================================
  TColStd_ListOfInteger& BOPTools_SSInterference::AloneVertices () 
{
  return myAloneVertices;
}
//modified by NIZNHY-PKV Fri Jun 30 10:06:12 2006f
//=======================================================================
// function: SetSharedEdges
// purpose: 
//=======================================================================
  void BOPTools_SSInterference::SetSharedEdges (const TColStd_ListOfInteger& aLS) 
{
  Standard_Integer nE;
  TColStd_ListIteratorOfListOfInteger aIt;
  //
  aIt.Initialize(aLS);
  for(; aIt.More(); aIt.Next()) {
    nE=aIt.Value();
    mySharedEdges.Append(nE);
  }
}
//=======================================================================
// function: SharedEdges
// purpose: 
//=======================================================================
  const TColStd_ListOfInteger& BOPTools_SSInterference::SharedEdges()const 
{
  return mySharedEdges;
}
/*
//=======================================================================
// function: SetSharedEdges
// purpose: 
//=======================================================================
  void BOPTools_SSInterference::SetSharedEdges (const TopTools_ListOfShape& aLS) 
{
  TopTools_ListIteratorOfListOfShape aIt;
  //
  aIt.Initialize(aLS);
  for(; aIt.More(); aIt.Next()) {
    const TopoDS_Shape& aE=aIt.Value();
    mySharedEdges.Append(aE);
  }
}
//=======================================================================
// function: SharedEdges
// purpose: 
//=======================================================================
  const TopTools_ListOfShape& BOPTools_SSInterference::SharedEdges()const 
{
  return mySharedEdges;
}
*/
//modified by NIZNHY-PKV Fri Jun 30 10:06:14 2006t