blob: 08f1d10ee16c6ccc931aa32a3c595bd760a3b58d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
-- File: StepToGeom_MakeBoundedSurface.cdl
-- Created: Tue Jun 22 12:37:10 1993
-- Author: Martine LANGLOIS
---Copyright: Matra Datavision 1993
class MakeBoundedSurface from StepToGeom
---Purpose: This class implements the mapping between classes
-- BoundedSurface from
-- StepGeom which describes a BoundedSurface from
-- prostep and the class BoundedSurface from Geom.
-- As BoundedSurface is an abstract BoundedSurface this class
-- is an access to the sub-class required.
uses BoundedSurface from Geom,
BoundedSurface from StepGeom
is
Convert ( myclass; SS : BoundedSurface from StepGeom;
CS : out BoundedSurface from Geom )
returns Boolean from Standard;
end MakeBoundedSurface;
|