blob: b05e1631547d10471fcd0926743f93a176f1e013 (
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
|
-- File: DrawablePolyEdgeTool.cdl
-- Created: Thu Aug 27 16:28:55 1992
-- Author: Christophe MARION
-- <cma@sdsun2>
---Copyright: Matra Datavision 1992
class DrawablePolyEdgeTool from HLRTest inherits Drawable3D from Draw
---Purpose:
uses
Boolean from Standard,
Integer from Standard,
Display from Draw,
PolyAlgo from HLRBRep,
ListOfBPoint from HLRBRep
is
Create(Alg : PolyAlgo from HLRBRep;
ViewId : Integer from Standard;
Debug : Boolean from Standard = Standard_False)
returns mutable DrawablePolyEdgeTool from HLRTest;
Show(me : mutable)
---C++: inline
is static;
Hide(me : mutable)
---C++: inline
is static;
DisplayRg1Line(me : mutable; B : Boolean from Standard)
---C++: inline
is static;
DisplayRg1Line(me) returns Boolean from Standard
---C++: inline
is static;
DisplayRgNLine(me : mutable; B : Boolean from Standard)
---C++: inline
is static;
DisplayRgNLine(me) returns Boolean from Standard
---C++: inline
is static;
DisplayHidden(me : mutable; B : Boolean from Standard)
---C++: inline
is static;
DisplayHidden(me) returns Boolean from Standard
---C++: inline
is static;
DrawOn(me; D : in out Display from Draw);
Debug(me) returns Boolean from Standard
---C++: inline
is static;
Debug(me : mutable; B : Boolean from Standard)
---C++: inline
is static;
fields
myAlgo : PolyAlgo from HLRBRep;
myDispRg1 : Boolean from Standard;
myDispRgN : Boolean from Standard;
myDispHid : Boolean from Standard;
myViewId : Integer from Standard;
myBiPntVis : ListOfBPoint from HLRBRep;
myBiPntHid : ListOfBPoint from HLRBRep;
myDebug : Boolean from Standard;
myHideMode : Boolean from Standard;
end DrawablePolyEdgeTool;
|