blob: 29e2da064f0df84526c045512ef6832a3873e217 (
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
|
-- File: GeomToStep_MakeLine.cdl
-- Created: Mon Jun 14 15:51:51 1993
-- Author: Martine LANGLOIS
-- <mla@mastox>
---Copyright: Matra Datavision 1993
class MakeLine from GeomToStep inherits Root from GeomToStep
---Purpose: This class implements the mapping between classes
-- Line from Geom and Lin from gp, and the class
-- Line from StepGeom which describes a line from
-- Prostep.
uses Lin from gp,
Lin2d from gp,
Line from Geom,
Line from Geom2d,
Line from StepGeom
raises NotDone from StdFail
is
Create ( L : Lin from gp ) returns MakeLine;
Create ( L : Lin2d from gp ) returns MakeLine;
Create ( C : Line from Geom ) returns MakeLine;
Create ( C : Line from Geom2d ) returns MakeLine;
Value (me) returns Line from StepGeom
raises NotDone
is static;
---C++: return const&
fields
theLine : Line from StepGeom;
-- The solution from StepGeom
end MakeLine;
|