blob: e8993a510e4d5c08bd6d55639cd874f38bcce3fd (
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_MakeSurface.cdl
-- Created: Tue Jun 22 12:19:43 1993
-- Author: Martine LANGLOIS
---Copyright: Matra Datavision 1993
class MakeSurface from StepToGeom
---Purpose: This class implements the mapping between classes
-- Surface from StepGeom which describes a Surface
-- from prostep and Surface from Geom.
-- As Surface is an abstract
-- Surface this class is an access to the sub-class required.
uses Surface from Geom,
Surface from StepGeom
is
Convert ( myclass; SS : Surface from StepGeom;
CS : out Surface from Geom )
returns Boolean from Standard;
end MakeSurface;
|