blob: fd522abb8d873fb80b8109baf5d830e2d67579b6 (
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
|
// File: PBRep_TVertex.cxx
// Created: Mon Jul 26 10:29:14 1993
// Author: Remi LEQUETTE
// <rle@nonox>
#include <PBRep_TVertex.ixx>
//=======================================================================
//function : PBRep_TVertex
//purpose :
//=======================================================================
PBRep_TVertex::PBRep_TVertex()
{
}
//=======================================================================
//function : Tolerance
//purpose :
//=======================================================================
Standard_Real PBRep_TVertex::Tolerance()const
{
return myTolerance;
}
//=======================================================================
//function : Tolerance
//purpose :
//=======================================================================
void PBRep_TVertex::Tolerance(const Standard_Real T)
{
myTolerance = T;
}
//=======================================================================
//function : Pnt
//purpose :
//=======================================================================
gp_Pnt PBRep_TVertex::Pnt()const
{
return myPnt;
}
//=======================================================================
//function : Pnt
//purpose :
//=======================================================================
void PBRep_TVertex::Pnt(const gp_Pnt& P)
{
myPnt = P;
}
//=======================================================================
//function : Points
//purpose :
//=======================================================================
Handle(PBRep_PointRepresentation) PBRep_TVertex::Points()const
{
return myPoints;
}
//=======================================================================
//function : Points
//purpose :
//=======================================================================
void PBRep_TVertex::Points(const Handle(PBRep_PointRepresentation)& P)
{
myPoints = P;
}
|