summaryrefslogtreecommitdiff
path: root/inc/IntSurf_Transition.lxx
blob: bc84182362e53364556693bd45fce4adb053e1c0 (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
#include <Standard_DomainError.hxx>


inline void IntSurf_Transition::SetValue (const Standard_Boolean Tangent,
				   const IntSurf_TypeTrans Type) {
  tangent = Tangent;
  typetra = Type;
}


inline void IntSurf_Transition::SetValue (const Standard_Boolean Tangent,
				   const IntSurf_Situation Situ,
				   const Standard_Boolean Oppos) {

  tangent = Tangent;
  typetra = IntSurf_Touch;
  situat = Situ;
  oppos = Oppos;
}


inline void IntSurf_Transition::SetValue () {

  typetra = IntSurf_Undecided;
}


inline IntSurf_TypeTrans IntSurf_Transition::TransitionType () const {

  return typetra;
}


inline Standard_Boolean IntSurf_Transition::IsTangent () const {

  if (typetra == IntSurf_Undecided) {Standard_DomainError::Raise();}
  return tangent;
}


inline IntSurf_Situation IntSurf_Transition::Situation () const {

  if (typetra != IntSurf_Touch) {Standard_DomainError::Raise();}
  return situat;
}


inline Standard_Boolean IntSurf_Transition::IsOpposite () const {

  if (typetra != IntSurf_Touch) {Standard_DomainError::Raise();}
  return oppos;
}