blob: a0c4262e903a95789708467bcee8c127ced36810 (
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
|
-- File: DrawDim_Angle.cdl
-- Created: Tue May 28 12:27:28 1996
-- Author: Denis PASCAL
-- <dp@zerox>
---Copyright: Matra Datavision 1996
class Angle from DrawDim inherits Dimension from DrawDim
---Purpose:
uses Face from TopoDS,
Display from Draw
is
Create (plane1 : Face from TopoDS;
plane2 : Face from TopoDS)
returns mutable Angle from DrawDim;
Plane1 (me) returns Face from TopoDS;
---C++: return const&
Plane1 (me : mutable; plane : Face from TopoDS);
Plane2 (me) returns Face from TopoDS;
---C++: return const&
Plane2 (me : mutable; plane : Face from TopoDS);
DrawOn (me; dis : in out Display);
fields
myPlane1 : Face from TopoDS;
myPlane2 : Face from TopoDS;
end Angle;
|