blob: 365b0300a8984bc5db73a2802125544d1e5ec761 (
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
|
-- File: TVertex.cdl
-- Created: Wed May 27 15:20:30 1992
-- Author: Remi LEQUETTE
-- <rle@sdsun2>
---Copyright: Matra Datavision 1992
class TVertex from BRep inherits TVertex from TopoDS
---Purpose: The TVertex from BRep inherits from the TVertex
-- from TopoDS. It contains the geometric data.
--
-- The TVertex contains a 3d point and a tolerance.
--
uses
Pnt from gp,
TShape from TopoDS,
ListOfPointRepresentation from BRep
is
Create returns mutable TVertex from BRep;
Tolerance(me) returns Real
---C++: inline
is static;
Tolerance(me : mutable; T : Real)
---C++: inline
is static;
UpdateTolerance(me : mutable; T : Real)
---Purpose: Sets the tolerance to the max of <T> and the
-- current tolerance.
--
---C++: inline
is static;
Pnt(me) returns Pnt from gp
---C++: inline
---C++: return const &
is static;
Pnt(me : mutable; P : Pnt from gp)
---C++: inline
is static;
Points(me) returns ListOfPointRepresentation from BRep
---C++: inline
---C++: return const &
is static;
ChangePoints(me : mutable) returns ListOfPointRepresentation from BRep
---C++: inline
---C++: return &
is static;
EmptyCopy(me) returns mutable TShape from TopoDS;
---Purpose: Returns a copy of the TShape with no sub-shapes.
fields
myPnt : Pnt from gp;
myTolerance : Real;
myPoints : ListOfPointRepresentation from BRep;
end TVertex;
|