blob: f0600752ce5d579a6d6e8c085372497c8653e46d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
-- File: StepToGeom_MakeLine2d.cdl
-- Created: Wed Aug 4 10:53:16 1993
-- Author: Martine LANGLOIS
---Copyright: Matra Datavision 1993
class MakeLine2d from StepToGeom
---Purpose: This class implements the mapping between classes
-- Line from StepGeom which describes a line from
-- Prostep and Line from Geom2d.
uses
Line from Geom2d,
Line from StepGeom
is
Convert ( myclass; SC : Line from StepGeom;
CC : out Line from Geom2d )
returns Boolean from Standard;
end MakeLine2d;
|