blob: 3b01839990deaa36527d76398b509989e7a40ce5 (
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
|
// File: BOPTools_EEInterference.cxx
// Created: Tue Nov 21 15:42:17 2000
// Author: Peter KURNEV
// <pkv@irinox>
#include <BOPTools_EEInterference.ixx>
//=======================================================================
//function : BOPTools_EEInterference
//purpose :
//=======================================================================
BOPTools_EEInterference::BOPTools_EEInterference()
:
BOPTools_ShapeShapeInterference(0,0)
{}
//=======================================================================
//function : BOPTools_ESInterference
//purpose :
//=======================================================================
BOPTools_EEInterference::BOPTools_EEInterference
(const Standard_Integer anIndex1,
const Standard_Integer anIndex2,
const IntTools_CommonPrt& aCPart)
:
BOPTools_ShapeShapeInterference(anIndex1,anIndex2)
{
myCommonPart=aCPart;
}
//=======================================================================
//function : CommonPrt
//purpose :
//=======================================================================
const IntTools_CommonPrt& BOPTools_EEInterference::CommonPrt() const
{
return myCommonPart;
}
|