summaryrefslogtreecommitdiff
path: root/src/Intf/Intf_SectionPoint.cxx
blob: 91143f7fe50b81df0d6a2f62a7e0de5658722a56 (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
252
253
254
255
256
257
258
// File:	SectionPoint.cxx
// Created:	Mon Jun 24 09:57:32 1991
// Author:	Didier PIFFAULT
//		<dpf@phobox>

#include <Intf_SectionPoint.ixx>


#define DEBUG_INTFSECTIONPOINT 0


//=======================================================================
//function : Pnt
//purpose  : 
//=======================================================================

const gp_Pnt& Intf_SectionPoint::Pnt () const {return myPnt;}


//=======================================================================
//function : GetElemO
//purpose  : 
//=======================================================================

void Intf_SectionPoint::InfoFirst (Intf_PIType& Dim,
				   Standard_Integer&     Add1,
				   Standard_Integer&     Add2,
				   Standard_Real&        Param) const
{
  Dim =DimenObje;
  Add1=IndexO1;
  Add2=IndexO2;
  Param=ParamObje;
}

//=======================================================================
//function : GetElemO
//purpose  : 
//=======================================================================

void Intf_SectionPoint::InfoFirst (Intf_PIType& Dim,
				   Standard_Integer&     Add,
				   Standard_Real&        Param) const
{
  Dim =DimenObje;
  Add=IndexO2;
  Param=ParamObje;
}


//=======================================================================
//function : GetElemT
//purpose  : 
//=======================================================================

void Intf_SectionPoint::InfoSecond (Intf_PIType& Dim,
				    Standard_Integer&     Add1,
				    Standard_Integer&     Add2,
				    Standard_Real&        Param) const 
{
  Dim =DimenTool;
  Add1=IndexT1;
  Add2=IndexT2;
  Param=ParamTool;
}

//=======================================================================
//function : GetElemT
//purpose  : 
//=======================================================================

void Intf_SectionPoint::InfoSecond (Intf_PIType& Dim,
				    Standard_Integer&     Add,
				    Standard_Real&        Param) const 
{
  Dim =DimenTool;
  Add=IndexT2;
  Param=ParamTool;
}

//=======================================================================
//function : GetIncidence
//purpose  : 
//=======================================================================

Standard_Real Intf_SectionPoint::Incidence () const 
{return Incide;}


//=======================================================================
//function : IsOnSameEdge
//purpose  : 
//=======================================================================

Standard_Boolean Intf_SectionPoint::IsOnSameEdge
  (const Intf_SectionPoint& Other) const
{
  Standard_Boolean isOn=Standard_False;
  if (DimenObje==Intf_EDGE) {
    if (Other.DimenObje==Intf_EDGE) {
      isOn=(IndexO1==Other.IndexO1 && IndexO2==Other.IndexO2);
    }
    else if (Other.DimenObje==Intf_VERTEX) {
      isOn=(IndexO1==Other.IndexO1 || IndexO2==Other.IndexO1);
    }
  }
  else if (DimenObje == Intf_VERTEX) {
    if (Other.DimenObje==Intf_EDGE) {
      isOn=(IndexO1==Other.IndexO1 || IndexO1==Other.IndexO2);
    }
    else if (Other.DimenObje==Intf_VERTEX) {
#if DEBUG_INTFSECTIONPOINT
      cout << " IsOnSameEdge on Intersection VERTEX VERTEX Obje !" << endl;
#endif
	isOn=(IndexT1==Other.IndexT1);
    }
  }
  if (!isOn) {
    if (DimenTool==Intf_EDGE) {
      if (Other.DimenTool==Intf_EDGE) {
	isOn=(IndexT1==Other.IndexT1 && IndexT2==Other.IndexT2);
      }
      else if (Other.DimenTool==Intf_VERTEX) {
	isOn=(IndexT1==Other.IndexT1 || IndexT2==Other.IndexT1);
      }
    }
    else if (DimenTool == Intf_VERTEX) {
      if (Other.DimenTool==Intf_EDGE) {
	isOn=(IndexT1==Other.IndexT1 || IndexT1==Other.IndexT2);
      }
      else if (Other.DimenTool==Intf_VERTEX) {
#if DEBUG_INTFSECTIONPOINT
	cout << " IsOnSameEdge on Intersection VERTEX VERTEX Tool !" << endl;
#endif
	isOn=(IndexT1==Other.IndexT1);
      }
    }
  }
  return isOn;
}

//=======================================================================
//function : Intf_SectionPoint
//purpose  : 
//=======================================================================

Intf_SectionPoint::Intf_SectionPoint  ()
     : myPnt(0.,0.,0.),
       DimenObje(Intf_EXTERNAL), IndexO1(0), IndexO2(0), ParamObje(0.),
       DimenTool(Intf_EXTERNAL), IndexT1(0), IndexT2(0), ParamTool(0.),
       Incide(0.)
{
}

//=======================================================================
//function : Intf_SectionPoint
//purpose  : 
//=======================================================================

Intf_SectionPoint::Intf_SectionPoint  (const gp_Pnt& Where,
				       const Intf_PIType Dim1,
				       const Standard_Integer Addr1,
				       const Standard_Integer Addr2,
				       const Standard_Real Param1,
				       const Intf_PIType Dim2,
				       const Standard_Integer Addr3,
				       const Standard_Integer Addr4,
				       const Standard_Real Param2,
				       const Standard_Real Incid)
     : myPnt(Where),
       DimenObje(Dim1), IndexO1(Addr1), IndexO2(Addr2), ParamObje(Param1),
       DimenTool(Dim2), IndexT1(Addr3), IndexT2(Addr4), ParamTool(Param2),
       Incide(Incid)
{
}

//=======================================================================
//function : Intf_SectionPoint
//purpose  : 
//=======================================================================

Intf_SectionPoint::Intf_SectionPoint  (const gp_Pnt2d& Where,
				       const Intf_PIType Dim1,
				       const Standard_Integer Addr1,
				       const Standard_Real Param1,
				       const Intf_PIType Dim2,
				       const Standard_Integer Addr2,
				       const Standard_Real Param2,
				       const Standard_Real Incid)
     : myPnt(Where.X(),Where.Y(),0.),
       DimenObje(Dim1), IndexO1(0), IndexO2(Addr1), ParamObje(Param1),
       DimenTool(Dim2), IndexT1(0), IndexT2(Addr2), ParamTool(Param2),
       Incide(Incid)
{
}


//=======================================================================
//function : Merge
//purpose  : 
//=======================================================================

void Intf_SectionPoint::Merge  (Intf_SectionPoint& Other) {
  Other.myPnt=myPnt;
  if (DimenObje >= Other.DimenObje) {
    Other.DimenObje=DimenObje;
    Other.IndexO1=IndexO1;
    Other.IndexO2=IndexO2;
    Other.ParamObje=ParamObje;
  }
  else {
    DimenObje=Other.DimenObje;
    IndexO1=Other.IndexO1;
    IndexO2=Other.IndexO2;
    ParamObje=Other.ParamObje;
  }
  if (DimenTool >= Other.DimenTool) {
    Other.DimenTool=DimenTool;
    Other.IndexT1=IndexT1;
    Other.IndexT2=IndexT2;
    Other.ParamTool=ParamTool;
  }
  else {
    DimenTool=Other.DimenTool;
    IndexT1=Other.IndexT1;
    IndexT2=Other.IndexT2;
    ParamTool=Other.ParamTool;
  }
}

//=======================================================================
//function : Dump
//purpose  : 
//=======================================================================

void Intf_SectionPoint::Dump (const Standard_Integer
#if DEBUG_INTFSECTIONPOINT 
                                                     Indent
#endif
                             ) const
{
#if DEBUG_INTFSECTIONPOINT 
  for (Standard_Integer id=0; id<Indent; id++) cout << " ";

  cout << "PIType(" << DimenObje << "," << DimenTool << ")  entre(" 
        << IndexO1 << "," << IndexO2 << ") par(" << ParamObje 
	  << ") et ("
	<< IndexT1 << "," << IndexT2 << ") par(" << ParamTool  
	  << ")" << endl;

  for (id=0; id<Indent; id++) cout << " ";

  cout << "  Lieu(" << myPnt.X() << ","
                    << myPnt.Y() << "," 
                    << myPnt.Z() << 
	 ")  Incidence(" << Incide << ")" << endl;
#endif
}