blob: 84653429e3879fe5c08363078c34c6177d863532 (
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
|
// File: IntTools_Compare.cxx
// Created: Mon May 22 17:02:11 2000
// Author: Peter KURNEV
// <pkv@irinox>
#include <IntTools_Compare.ixx>
//=======================================================================
//function :IntTools_Compare::IntTools_Compare
//purpose :
//=======================================================================
IntTools_Compare::IntTools_Compare() :myTol(1.e-12) {}
//=======================================================================
//function :IntTools_Compare::IntTools_Compare
//purpose :
//=======================================================================
IntTools_Compare::IntTools_Compare(const Standard_Real aTol)
{
myTol=aTol;
}
//=======================================================================
//function :IsLower
//purpose :
//=======================================================================
Standard_Boolean IntTools_Compare::IsLower(const IntTools_Root& aLeft,
const IntTools_Root& aRight)const
{
return aLeft.Root()<aRight.Root();
}
//=======================================================================
//function :IsGreater
//purpose :
//=======================================================================
Standard_Boolean IntTools_Compare::IsGreater(const IntTools_Root& aLeft,
const IntTools_Root& aRight)const
{
return !IsLower(aLeft,aRight);
}
//=======================================================================
//function :IsEqual
//purpose :
//=======================================================================
Standard_Boolean IntTools_Compare::IsEqual(const IntTools_Root& aLeft,
const IntTools_Root& aRight)const
{
Standard_Real a, b;
a=aLeft.Root();
b=aRight.Root();
return fabs(a-b) < myTol;
}
|