blob: c572345408066c5328f94170e43b4001c78baa4a (
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_MakeCartesianPoint2d.cdl
-- Created: Tue Jul 6 16:30:29 1993
-- Author: Martine LANGLOIS
---Copyright: Matra Datavision 1993
class MakeCartesianPoint2d from StepToGeom
---Purpose: This class implements the mapping between classes
-- CartesianPoint from StepGeom which describes a point from
-- Prostep and CartesianPoint from Geom2d.
uses
CartesianPoint from Geom2d,
CartesianPoint from StepGeom
is
Convert ( myclass; SP : CartesianPoint from StepGeom;
CP : out CartesianPoint from Geom2d )
returns Boolean from Standard;
end MakeCartesianPoint2d;
|