blob: bb43cdeffdd6fefa56c9c1e2f5e6d174740b9d30 (
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
|
// File: TopBas_Interference.gxx
// Created: Thu Aug 13 17:57:15 1992
// Author: Remi LEQUETTE
// <rle@phylox>
//=======================================================================
//function : TopBas_Interference
//purpose :
//=======================================================================
TopBas_Interference::TopBas_Interference()
{
}
//=======================================================================
//function : TopBas_Interference
//purpose :
//=======================================================================
TopBas_Interference::TopBas_Interference(const TheSubShape& Inters,
const TheShape& Bound,
const TopAbs_Orientation Orient,
const TopAbs_Orientation Trans,
const TopAbs_Orientation BTrans) :
myIntersection(Inters),
myBoundary(Bound),
myOrientation(Orient),
myTransition(Trans),
myBTransition(BTrans)
{
}
|