blob: 2174fd1d910465e6ac3a0045ec721c4b3b171d2f (
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_MakeEllipse.cdl
-- Created: Thu Sep 1 13:46:53 1994
-- Author: Frederic MAUPAS
---Copyright: Matra Datavision 1994
class MakeEllipse from StepToGeom
---Purpose: This class implements the mapping between classes
-- Ellipse from StepGeom which describes a Ellipse from
-- Prostep and Ellipse from Geom.
uses
Ellipse from Geom,
Ellipse from StepGeom
is
Convert ( myclass; SC : Ellipse from StepGeom;
CC : out Ellipse from Geom )
returns Boolean from Standard;
end MakeEllipse;
|