blob: b0bad313bc6a27a7e1ff4f0f3bcbc743d63c47d7 (
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
|
// File: ShapeUpgrade_Tool.lxx
// Created: Tue Aug 31 15:21:41 1999
// Author: Pavel DURANDIN
// <pdn@friendox.nnov.matra-dtv.fr>
//=======================================================================
//function : SetContext
//purpose :
//=======================================================================
inline void ShapeUpgrade_Tool::SetContext (const Handle(ShapeBuild_ReShape)& context)
{
myContext = context;
}
//=======================================================================
//function : Context
//purpose :
//=======================================================================
inline Handle(ShapeBuild_ReShape) ShapeUpgrade_Tool::Context() const
{
return myContext;
}
//=======================================================================
//function : SetPrecision
//purpose :
//=======================================================================
inline void ShapeUpgrade_Tool::SetPrecision (const Standard_Real preci)
{
myPrecision = preci;
if(myMaxTol < myPrecision) myMaxTol = myPrecision;
if(myMinTol > myPrecision) myMinTol = myPrecision;
}
//=======================================================================
//function : Precision
//purpose :
//=======================================================================
inline Standard_Real ShapeUpgrade_Tool::Precision() const
{
return myPrecision;
}
//=======================================================================
//function : SetMinTolerance
//purpose :
//=======================================================================
inline void ShapeUpgrade_Tool::SetMinTolerance (const Standard_Real mintol)
{
myMinTol = mintol;
}
//=======================================================================
//function : MinTolerance
//purpose :
//=======================================================================
inline Standard_Real ShapeUpgrade_Tool::MinTolerance() const
{
return myMinTol;
}
//=======================================================================
//function : SetMaxTolerance
//purpose :
//=======================================================================
inline void ShapeUpgrade_Tool::SetMaxTolerance (const Standard_Real maxtol)
{
myMaxTol = maxtol;
}
//=======================================================================
//function : MaxTolerance
//purpose :
//=======================================================================
inline Standard_Real ShapeUpgrade_Tool::MaxTolerance() const
{
return myMaxTol;
}
//=======================================================================
//function : LimitTolerance
//purpose :
//=======================================================================
inline Standard_Real ShapeUpgrade_Tool::LimitTolerance(const Standard_Real toler) const
{
//only maximal restriction implemented.
return Min(myMaxTol,toler);
}
|