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