blob: 0dd7340a887196301e40980dc55c849c462c368e (
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
|
#include <IntSurf_Transition.ixx>
IntSurf_Transition::IntSurf_Transition (const Standard_Boolean Tangent,
const IntSurf_TypeTrans Type):
tangent(Tangent),
typetra(Type),
situat(IntSurf_Unknown),
oppos(Standard_False)
{}
IntSurf_Transition::IntSurf_Transition (const Standard_Boolean Tangent,
const IntSurf_Situation Situ,
const Standard_Boolean Oppos):
tangent(Tangent),
typetra(IntSurf_Touch),
situat(Situ),
oppos(Oppos)
{}
IntSurf_Transition::IntSurf_Transition ():
tangent(Standard_False),
typetra(IntSurf_Undecided),
situat(IntSurf_Unknown),
oppos(Standard_False)
{}
|