blob: 50c688c6e1890dc8567e46049a4bf884c0c08aa7 (
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_MakeVectorWithMagnitude2d.cdl
-- Created: Wed Aug 4 11:43:33 1993
-- Author: Martine LANGLOIS
---Copyright: Matra Datavision 1993
class MakeVectorWithMagnitude2d from StepToGeom
---Purpose: This class implements the mapping between classes
-- Vector from StepGeom which describes a VectorWithMagnitude
-- from Prostep and VectorWithMagnitude from Geom2d.
uses
VectorWithMagnitude from Geom2d,
Vector from StepGeom
is
Convert ( myclass; SV : Vector from StepGeom;
CV : out VectorWithMagnitude from Geom2d )
returns Boolean from Standard;
end MakeVectorWithMagnitude2d;
|