blob: 0b94bd43dd25995c3dbc25a7108cfbbef415442e (
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
111
|
-- File: Curve2d.cdl
-- Created: Fri May 22 10:48:44 1992
-- Author: Jean Claude VAUTHIER
-- <jcv@sdsun4>
-- Modified PMN CurvatureRadius added
---Copyright: Matra Datavision 1992
class Curve2d from DrawTrSurf
inherits Drawable
--- Purpose : This class defines a drawable curve in 2d space.
-- The curve is drawned in the plane XOY.
uses Curve from Geom2d,
Color from Draw,
Display from Draw,
Drawable3D from Draw,
Interpretor from Draw,
OStream
is
Create (C : Curve from Geom2d;
DispOrigin : Boolean from Standard = Standard_True)
--- Purpose :
-- creates a drawable curve from a curve of package Geom2d.
returns mutable Curve2d from DrawTrSurf;
Create (C : Curve from Geom2d; aColor : Color from Draw; Discret :Integer;
DispOrigin : Boolean from Standard = Standard_True;
DispCurvRadius : Boolean = Standard_False;
RadiusMax : Real = 1.0e3;
RatioOfRadius : Real = 0.1)
returns mutable Curve2d from DrawTrSurf;
DrawOn (me; dis : in out Display from Draw);
GetCurve (me) returns any Curve from Geom2d
---C++: inline
is static;
SetColor(me : mutable; aColor : Color from Draw)
---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;
Is3D(me) returns Boolean
---Purpose: Returns False.
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 Geom2d 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 Curve2d;
|