blob: 3535fa8b577336e5650ff24821fda01ba0ec8b4a (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
// File: BOPTools_Pave.cxx
// Created: Thu Feb 8 12:32:40 2001
// Author: Peter KURNEV
// <pkv@irinox>
#include <BOPTools_Pave.ixx>
//=======================================================================
// function: BOPTools_Pave::BOPTools_Pave
// purpose:
//=======================================================================
BOPTools_Pave::BOPTools_Pave()
:
myParam(0.),
myIndex(0),
myType(BooleanOperations_UnknownInterference),
myInterf(0)
{}
//=======================================================================
// function: BOPTools_Pave::BOPTools_Pave
// purpose:
//=======================================================================
BOPTools_Pave::BOPTools_Pave(const Standard_Integer anIndex,
const Standard_Real aParam,
const BooleanOperations_KindOfInterference aType)
:
myParam(aParam),
myIndex(anIndex),
myType(aType),
myInterf(0)
{}
//=======================================================================
// function: SetParam
// purpose:
//=======================================================================
void BOPTools_Pave::SetParam(const Standard_Real aParam)
{
myParam=aParam;
}
//=======================================================================
// function: SetIndex
// purpose:
//=======================================================================
void BOPTools_Pave::SetIndex(const Standard_Integer anIndex)
{
myIndex=anIndex;
}
//=======================================================================
// function: SetType
// purpose:
//=======================================================================
void BOPTools_Pave::SetType(const BooleanOperations_KindOfInterference aType)
{
myType=aType;
}
//=======================================================================
// function: SetInterference
// purpose:
//=======================================================================
void BOPTools_Pave::SetInterference(const Standard_Integer anIndex)
{
myInterf=anIndex;
}
//=======================================================================
// function: Param
// purpose:
//=======================================================================
Standard_Real BOPTools_Pave::Param() const
{
return myParam;
}
//=======================================================================
// function: Index
// purpose:
//=======================================================================
Standard_Integer BOPTools_Pave::Index() const
{
return myIndex;
}
//=======================================================================
// function: Type
// purpose:
//=======================================================================
BooleanOperations_KindOfInterference BOPTools_Pave::Type() const
{
return myType;
}
//=======================================================================
// function: Interference
// purpose:
//=======================================================================
Standard_Integer BOPTools_Pave::Interference() const
{
return myInterf;
}
//=======================================================================
// function: IsEqual
// purpose:
//=======================================================================
Standard_Boolean BOPTools_Pave::IsEqual(const BOPTools_Pave& Other) const
{
Standard_Integer anIndOther;
Standard_Real aParamOther, dt=1.e-14;
anIndOther=Other.Index();
if (anIndOther!=myIndex) {
return Standard_False;
}
aParamOther=Other.Param();
if (fabs (aParamOther-myParam) > dt){
return Standard_False;
}
return Standard_True;
}
|