blob: 2f1098e4227a9100ef922bdd5a86fc009860ca19 (
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
|
//=======================================================================
//function : Intersection
//purpose :
//=======================================================================
inline void TopBas_Interference::Intersection(const TheSubShape& I)
{
myIntersection = I;
}
//=======================================================================
//function : Boundary
//purpose :
//=======================================================================
inline void TopBas_Interference::Boundary(const TheShape& B)
{
myBoundary = B;
}
//=======================================================================
//function : Orientation
//purpose :
//=======================================================================
inline void TopBas_Interference::Orientation(const TopAbs_Orientation Or)
{
myOrientation = Or;
}
//=======================================================================
//function : Transition
//purpose :
//=======================================================================
inline void TopBas_Interference::Transition(const TopAbs_Orientation Or)
{
myTransition = Or;
}
//=======================================================================
//function : BoundaryTransition
//purpose :
//=======================================================================
inline void TopBas_Interference::BoundaryTransition
(const TopAbs_Orientation Or)
{
myBTransition = Or;
}
//=======================================================================
//function : Intersection
//purpose :
//=======================================================================
inline const TheSubShape& TopBas_Interference::Intersection() const
{
return myIntersection;
}
//=======================================================================
//function : ChangeIntersection
//purpose :
//=======================================================================
inline TheSubShape& TopBas_Interference::ChangeIntersection()
{
return myIntersection;
}
//=======================================================================
//function : Boundary
//purpose :
//=======================================================================
inline const TheShape& TopBas_Interference::Boundary() const
{
return myBoundary;
}
//=======================================================================
//function : ChangeBoundary
//purpose :
//=======================================================================
inline TheShape& TopBas_Interference::ChangeBoundary()
{
return myBoundary;
}
//=======================================================================
//function : Orientation
//purpose :
//=======================================================================
inline TopAbs_Orientation TopBas_Interference::Orientation() const
{
return myOrientation;
}
//=======================================================================
//function : Transition
//purpose :
//=======================================================================
inline TopAbs_Orientation TopBas_Interference::Transition() const
{
return myTransition;
}
//=======================================================================
//function : BoundaryTransition
//purpose :
//=======================================================================
inline TopAbs_Orientation TopBas_Interference::BoundaryTransition() const
{
return myBTransition;
}
|