summaryrefslogtreecommitdiff
path: root/src/GeomToStep/GeomToStep_MakeParabola.cdl
blob: 24ead4ac3d4bcfefee09456d6368a8ed0532a627 (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:	GeomToStep_MakeParabola.cdl
-- Created:	Thu May  4 17:39:49 1995
-- Author:	Dieter THIEMANN
--		<dth@bibox>
---Copyright:	 Matra Datavision 1995


class MakeParabola from GeomToStep inherits Root from GeomToStep

    ---Purpose: This class implements the mapping between the class
    --          Parabola from Geom and the class Parabola from
    --          StepGeom which describes a Parabola from ProSTEP


uses Parabola from Geom,
     Parabola from Geom2d,
     Parabola from StepGeom
     
raises NotDone from StdFail

is

Create ( C : Parabola from Geom2d) returns MakeParabola;

Create ( C : Parabola from Geom) returns MakeParabola;


Value (me) returns Parabola from StepGeom
    raises NotDone
    is static;
    ---C++: return const&


fields

    theParabola : Parabola from StepGeom;
    	-- The solution from StepGeom

end MakeParabola;