blob: 97e7012df25aba56b743ed6f77b78bc8c827d470 (
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
36
37
38
39
40
41
42
43
44
45
|
-- File: GeomToStep_MakeBSplineCurveWithKnots.cdl
-- Created: Thu Aug 5 16:05:05 1993
-- Author: Martine LANGLOIS
-- <mla@mastox>
---Copyright: Matra Datavision 1993
class MakeBSplineCurveWithKnots from GeomToStep inherits
Root from GeomToStep
---Purpose: This class implements the mapping between classes
-- BSplineCurve from Geom, Geom2d and the class
-- BSplineCurveWithKnots from StepGeom
-- which describes a bspline_curve_with_knots from
-- Prostep
uses
BSplineCurve from Geom,
BSplineCurve from Geom2d,
BSplineCurveWithKnots from StepGeom
raises
NotDone from StdFail
is
Create ( Bsplin : BSplineCurve from Geom ) returns
MakeBSplineCurveWithKnots;
Create ( Bsplin : BSplineCurve from Geom2d ) returns
MakeBSplineCurveWithKnots;
Value (me) returns
BSplineCurveWithKnots from StepGeom
raises NotDone
is static;
---C++: return const&
fields
theBSplineCurveWithKnots :
BSplineCurveWithKnots from StepGeom;
-- The solution from StepGeom
end MakeBSplineCurveWithKnots;
|