blob: b4fd4133d36c3b54281c586e6338848150523d75 (
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
25
26
27
28
29
30
31
32
33
34
35
|
-- File: GeomToStep_MakeCylindricalSurface.cdl
-- Created: Mon Jun 14 16:09:17 1993
-- Author: Martine LANGLOIS
-- <mla@mastox>
---Copyright: Matra Datavision 1993
class MakeCylindricalSurface from GeomToStep inherits Root from GeomToStep
---Purpose: This class implements the mapping between class
-- CylindricalSurface from Geom and the class
-- CylindricalSurface from StepGeom which describes a
-- cylindrical_surface from Prostep
uses CylindricalSurface from Geom,
CylindricalSurface from StepGeom
raises NotDone from StdFail
is
Create ( CSurf : CylindricalSurface from Geom ) returns MakeCylindricalSurface;
Value (me) returns CylindricalSurface from StepGeom
raises NotDone
is static;
---C++: return const&
fields
theCylindricalSurface : CylindricalSurface from StepGeom;
-- The solution from StepGeom
end MakeCylindricalSurface;
|