blob: b3b357ccdde3411e139a48f091791a0dca5fc387 (
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
|
-- File: TVertex1.cdl
-- Created: Wed May 27 15:20:30 1992
-- Author: Remi LEQUETTE
-- <rle@sdsun2>
---Copyright: Matra Datavision 1992
class TVertex1 from PBRep inherits TVertex1 from PTopoDS
---Purpose: The TVertex1 from PBRep inherits from the TVertex1
-- from TopoDS.
--
-- The TVertex1 contains a Pnt from gp and a tolerance.
--
uses
Pnt from gp,
PointRepresentation from PBRep
is
Create returns mutable TVertex1 from PBRep;
---Level: Internal
Tolerance(me) returns Real
is static;
---Level: Internal
Tolerance(me : mutable; T : Real)
is static;
---Level: Internal
Pnt(me) returns Pnt from gp
is static;
---Level: Internal
Pnt(me : mutable; P : Pnt from gp)
is static;
---Level: Internal
Points(me) returns PointRepresentation from PBRep
is static;
---Level: Internal
Points(me : mutable; P : PointRepresentation from PBRep)
is static;
---Level: Internal
fields
myTolerance : Real;
myPnt : Pnt from gp;
myPoints : PointRepresentation from PBRep;
end TVertex1;
|