blob: 2f3c237873d3a6ad80c79b668c2288f3f2db178a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
-- File: StepToGeom_MakeParabola.cdl
-- Created: Thu Sep 8 09:00:04 1994
-- Author: Frederic MAUPAS
---Copyright: Matra Datavision 1994
class MakeParabola from StepToGeom
---Purpose: This class implements the mapping between classes
-- Parabola from StepGeom which describes a Parabola from
-- Prostep and Parabola from Geom.
uses
Parabola from Geom,
Parabola from StepGeom
is
Convert ( myclass; SC : Parabola from StepGeom;
CC : out Parabola from Geom )
returns Boolean from Standard;
end MakeParabola;
|