summaryrefslogtreecommitdiff
path: root/src/IntPatch/IntPatch_Line.cxx
blob: c020145d16e1241e133b441b52b123a56fc12069 (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
#include <IntPatch_Line.ixx>


IntPatch_Line::IntPatch_Line (const Standard_Boolean Tang,
			      const IntSurf_TypeTrans Trans1,
			      const IntSurf_TypeTrans Trans2):
       tg(Tang),
       tS1(Trans1),tS2(Trans2),
       sit1(IntSurf_Unknown),sit2(IntSurf_Unknown),
       uS1(Standard_False),vS1(Standard_False),
       uS2(Standard_False),vS2(Standard_False)
{}

IntPatch_Line::IntPatch_Line (const Standard_Boolean Tang,
			      const IntSurf_Situation Situ1,
                              const IntSurf_Situation Situ2):
       tg(Tang),
       tS1(IntSurf_Touch),tS2(IntSurf_Touch),
       sit1(Situ1),sit2(Situ2),
       uS1(Standard_False),vS1(Standard_False),
       uS2(Standard_False),vS2(Standard_False)
{}

IntPatch_Line::IntPatch_Line (const Standard_Boolean Tang):
       tg(Tang),
       tS1(IntSurf_Undecided),tS2(IntSurf_Undecided),
       sit1(IntSurf_Unknown),sit2(IntSurf_Unknown),
       uS1(Standard_False),vS1(Standard_False),
       uS2(Standard_False),vS2(Standard_False)
{}