blob: 0c6f9761c0eadd0126831760ea263691fc309906 (
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
|
// File: BOPTools_VEInterference.cxx
// Created: Tue Nov 21 15:43:57 2000
// Author: Peter KURNEV
// <pkv@irinox>
#include <BOPTools_VEInterference.ixx>
//=======================================================================
//function : BOPTools_VEInterference
//purpose :
//=======================================================================
BOPTools_VEInterference::BOPTools_VEInterference()
:
BOPTools_ShapeShapeInterference(0,0)
{}
//=======================================================================
//function : BOPTools_ESInterference
//purpose :
//=======================================================================
BOPTools_VEInterference::BOPTools_VEInterference
(const Standard_Integer anIndex1,
const Standard_Integer anIndex2,
const Standard_Real aT)
:
BOPTools_ShapeShapeInterference(anIndex1,anIndex2),
myParameter(aT)
{}
//=======================================================================
//function : SetParameter
//purpose :
//=======================================================================
void BOPTools_VEInterference::SetParameter (const Standard_Real aT)
{
myParameter=aT;
}
//=======================================================================
//function : Parameter
//purpose :
//=======================================================================
Standard_Real BOPTools_VEInterference::Parameter ()const
{
return myParameter;
}
|