blob: 7e928758d78fa9bfc5ef25fd214ee272f5adad09 (
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
|
// File: BRep_TEdge.lxx
// Created: Tue Aug 25 15:44:14 1992
// Author: Modelistation
// <model@phylox>
//=======================================================================
//function : Tolerance
//purpose :
//=======================================================================
inline Standard_Real BRep_TEdge::Tolerance()const
{
return myTolerance;
}
//=======================================================================
//function : Tolerance
//purpose :
//=======================================================================
inline void BRep_TEdge::Tolerance(const Standard_Real T)
{
myTolerance = T;
}
//=======================================================================
//function : UpdateTolerance
//purpose :
//=======================================================================
inline void BRep_TEdge::UpdateTolerance(const Standard_Real T)
{
if (T > myTolerance) myTolerance = T;
}
//=======================================================================
//function : Curves
//purpose :
//=======================================================================
inline const BRep_ListOfCurveRepresentation& BRep_TEdge::Curves()const
{
return myCurves;
}
//=======================================================================
//function : ChangeCurves
//purpose :
//=======================================================================
inline BRep_ListOfCurveRepresentation& BRep_TEdge::ChangeCurves()
{
return myCurves;
}
|