blob: a7c9663ec67180504e0efd4c695b8954fc39f283 (
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
|
// File: BRep_TVertex.lxx
// Created: Tue Aug 25 15:51:44 1992
// Author: Modelistation
// <model@phylox>
//=======================================================================
//function : Tolerance
//purpose :
//=======================================================================
inline Standard_Real BRep_TVertex::Tolerance()const
{
return myTolerance;
}
//=======================================================================
//function : Tolerance
//purpose :
//=======================================================================
inline void BRep_TVertex::Tolerance(const Standard_Real T)
{
myTolerance = T;
}
//=======================================================================
//function : UpdateTolerance
//purpose :
//=======================================================================
inline void BRep_TVertex::UpdateTolerance(const Standard_Real T)
{
if (T > myTolerance) myTolerance = T;
}
//=======================================================================
//function : Pnt
//purpose :
//=======================================================================
inline const gp_Pnt& BRep_TVertex::Pnt()const
{
return myPnt;
}
//=======================================================================
//function : Pnt
//purpose :
//=======================================================================
inline void BRep_TVertex::Pnt(const gp_Pnt& P)
{
myPnt = P;
}
//=======================================================================
//function : Points
//purpose :
//=======================================================================
inline const BRep_ListOfPointRepresentation& BRep_TVertex::Points()const
{
return myPoints;
}
//=======================================================================
//function : ChangePoints
//purpose :
//=======================================================================
inline BRep_ListOfPointRepresentation& BRep_TVertex::ChangePoints()
{
return myPoints;
}
|