blob: 56abde739d76e5a77aa10b00cb07ff9c0c90b22a (
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
-- File: Curve.cdl
-- Created: Thu May 21 19:16:50 1992
-- Author: Jean Claude VAUTHIER
-- <jcv@sdsun4>
---Copyright: Matra Datavision 1992
class Curve from DrawTrSurf
inherits Drawable
--- Purpose :
-- This class defines a drawable curve in 3d space.
uses Curve from Geom,
Color from Draw,
Display from Draw,
Drawable3D from Draw,
Interpretor from Draw,
OStream
is
Create (C : Curve from Geom; DispOrigin : Boolean from Standard = Standard_True)
--- Purpose :
-- creates a drawable curve from a curve of package Geom.
returns mutable Curve from DrawTrSurf;
Create (C : Curve from Geom; aColor : Color from Draw; Discret : Integer;
Deflection : Real; DrawMode : Integer;
DispOrigin : Boolean from Standard = Standard_True;
DispCurvRadius : Boolean = Standard_False;
RadiusMax : Real = 1.0e3;
RatioOfRadius : Real = 0.1)
returns mutable Curve from DrawTrSurf;
DrawOn (me; dis : in out Display from Draw);
GetCurve (me) returns any Curve from Geom
---C++: inline
is static;
SetColor(me : mutable; aColor : Color from Draw)
---C++: inline
is static;
DisplayOrigin(me) returns Boolean
---C++: inline
is static;
DisplayOrigin(me : mutable; V : Boolean)
---C++: inline
is static;
ShowCurvature(me : mutable)
---C++: inline
is static;
ClearCurvature(me : mutable)
---C++: inline
is static;
SetRadiusMax(me : mutable; Radius : Real)
---C++: inline
is static;
SetRadiusRatio(me : mutable; Ratio : Real)
---C++: inline
is static;
Color (me) returns Color from Draw
---C++: inline
is static;
RadiusMax(me) returns Real
---C++: inline
is static;
RadiusRatio(me) returns Real
---C++: inline
is static;
Copy(me) returns mutable Drawable3D from Draw
---Purpose: For variable copy.
is redefined;
Dump(me; S : in out OStream)
---Purpose: For variable dump.
is redefined;
Whatis(me; I : in out Interpretor from Draw)
is redefined;
---Purpose: For variable whatis command. Set as a result the
-- type of the variable.
fields
curv : Curve from Geom is protected ;
look : Color from Draw is protected ;
disporigin : Boolean from Standard is protected ;
dispcurvradius : Boolean from Standard is protected ;
radiusmax : Real from Standard is protected ;
radiusratio : Real from Standard is protected ;
end Curve;
|