blob: c1c7449a305848289c4a09c5279d14b3d3df2e4d (
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_MakeCircle2d.cdl
-- Created: Fri Aug 26 11:42:22 1994
-- Author: Frederic MAUPAS
---Copyright: Matra Datavision 1994
class MakeCircle2d from StepToGeom
---Purpose: This class implements the mapping between classes
-- Circle from StepGeom which describes a circle from
-- Prostep and Circle from Geom2d.
uses
Circle from Geom2d,
Circle from StepGeom
is
Convert ( myclass; SC : Circle from StepGeom;
CC : out Circle from Geom2d )
returns Boolean from Standard;
end MakeCircle2d;
|