blob: 1feff6e48b0c470ba4fe71603920db29ccae1b50 (
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_MakeConic.cdl
-- Created: Mon Jun 21 11:18:38 1993
-- Author: Martine LANGLOIS
---Copyright: Matra Datavision 1993
class MakeConic from StepToGeom
---Purpose: This class implements the mapping between classes
-- Conic from StepGeom
-- which describes a Conic from prostep and Conic from Geom .
-- As Conic is an abstract class
-- this class is an access to the sub-class required.
uses Conic from Geom,
Conic from StepGeom
is
Convert ( myclass; SC : Conic from StepGeom;
CC : out Conic from Geom )
returns Boolean from Standard;
end MakeConic;
|