blob: 8f8b3796b37dbd79ef14535813cf84d0ddf61fa1 (
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
|
// File: BOPTools_ShapeShapeInterference.cxx
// Created: Tue Nov 21 15:21:34 2000
// Author: Peter KURNEV
// <pkv@irinox>
#include <BOPTools_ShapeShapeInterference.ixx>
//=======================================================================
//function : BOPTools_ShapeShapeInterference::BOPTools_ShapeShapeInterference
//purpose :
//=======================================================================
BOPTools_ShapeShapeInterference::BOPTools_ShapeShapeInterference()
:
myIndex1(0), myIndex2(0), myNewShape(0)
{}
//=======================================================================
//function : BOPTools_ShapeShapeInterference::BOPTools_ShapeShapeInterference
//purpose :
//=======================================================================
BOPTools_ShapeShapeInterference::BOPTools_ShapeShapeInterference
(const Standard_Integer anIndex1,
const Standard_Integer anIndex2)
:
myIndex1(anIndex1),
myIndex2(anIndex2),
myNewShape(0)
{}
//=======================================================================
//function : SetIndex1
//purpose :
//=======================================================================
void BOPTools_ShapeShapeInterference::SetIndex1(const Standard_Integer anIndex1)
{
myIndex1=anIndex1;
}
//=======================================================================
//function : SetIndex2
//purpose :
//=======================================================================
void BOPTools_ShapeShapeInterference::SetIndex2(const Standard_Integer anIndex2)
{
myIndex2=anIndex2;
}
//=======================================================================
//function : SetNewShape
//purpose :
//=======================================================================
void BOPTools_ShapeShapeInterference::SetNewShape(const Standard_Integer anIndex)
{
myNewShape=anIndex;
}
//=======================================================================
//function : Index1
//purpose :
//=======================================================================
Standard_Integer BOPTools_ShapeShapeInterference::Index1() const
{
return myIndex1;
}
//=======================================================================
//function : Index2
//purpose :
//=======================================================================
Standard_Integer BOPTools_ShapeShapeInterference::Index2() const
{
return myIndex2;
}
//=======================================================================
//function : OppositeIndex
//purpose :
//=======================================================================
Standard_Integer BOPTools_ShapeShapeInterference::OppositeIndex
(const Standard_Integer anIndex) const
{
if (anIndex==myIndex1) {
return myIndex2;
}
else if(anIndex==myIndex2) {
return myIndex1;
}
else {
return 0;
}
}
//=======================================================================
//function : Indices
//purpose :
//=======================================================================
void BOPTools_ShapeShapeInterference::Indices(Standard_Integer& i1,
Standard_Integer& i2) const
{
i1=myIndex1;
i2=myIndex2;
}
//=======================================================================
//function : NewShape
//purpose :
//=======================================================================
Standard_Integer BOPTools_ShapeShapeInterference::NewShape() const
{
return myNewShape;
}
|