blob: 6a7ea02f8947ec11b3434e955ebf62e3ee63dc79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
-- File: StepToGeom_MakeConic2d.cdl
-- Created: Fri Aug 26 11:36:35 1994
-- Author: Frederic MAUPAS
---Copyright: Matra Datavision 1994
class MakeConic2d from StepToGeom
---Purpose: This class implements the mapping between classes
-- Conic from StepGeom
-- which describes a Conic from prostep and Conic from Geom2d.
-- As Conic is an abstract class
-- this class is an access to the sub-class required.
uses Conic from Geom2d,
Conic from StepGeom
is
Convert ( myclass; SC : Conic from StepGeom;
CC : out Conic from Geom2d )
returns Boolean from Standard;
end MakeConic2d;
|