]> OCCT Git - occt.git/blob
8eeaa0a67ebf88506a7d537e3255bed6d54951b1
[occt.git] /
1 // Created on: 1993-06-16
2 // Created by: Martine LANGLOIS
3 // Copyright (c) 1993-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #include <Geom2d_BSplineCurve.hxx>
18 #include <Geom_BSplineCurve.hxx>
19 #include <GeomAbs_BSplKnotDistribution.hxx>
20 #include <GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve.hxx>
21 #include <GeomToStep_MakeCartesianPoint.hxx>
22 #include <StdFail_NotDone.hxx>
23 #include <StepData_Factors.hxx>
24 #include <StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve.hxx>
25 #include <StepGeom_CartesianPoint.hxx>
26 #include <StepGeom_HArray1OfCartesianPoint.hxx>
27 #include <StepGeom_KnotType.hxx>
28 #include <TColgp_Array1OfPnt.hxx>
29 #include <TColgp_Array1OfPnt2d.hxx>
30 #include <TCollection_HAsciiString.hxx>
31 #include <TColStd_HArray1OfInteger.hxx>
32 #include <TColStd_HArray1OfReal.hxx>
33
34 //=============================================================================
35 // Creation d' une bspline_curve_with_knots_and_rational_bspline_curve de
36 // prostep a partir d' une BSplineCurve de Geom
37 //=============================================================================
38 GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve::
39   GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve(
40     const Handle(Geom_BSplineCurve)& BS,
41     const StepData_Factors&          theLocalFactors)
42 {
43 #define Array1OfPnt_gen TColgp_Array1OfPnt
44 #include "GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve_gen.pxx"
45 #undef Array1OfPnt_gen
46 }
47
48 //=============================================================================
49 // Creation d' une bspline_curve_with_knots_and_rational_bspline_curve de
50 // prostep a partir d' une BSplineCurve de Geom2d
51 //=============================================================================
52
53 GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve::
54   GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve(
55     const Handle(Geom2d_BSplineCurve)& BS,
56     const StepData_Factors&            theLocalFactors)
57
58 {
59 #define Array1OfPnt_gen TColgp_Array1OfPnt2d
60 #include "GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve_gen.pxx"
61 #undef Array1OfPnt_gen
62 }
63
64 //=============================================================================
65 // renvoi des valeurs
66 //=============================================================================
67
68 const Handle(StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve)&
69   GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve::Value() const
70 {
71   StdFail_NotDone_Raise_if(
72     !done,
73     "GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve::Value() - no result");
74   return theBSplineCurveWithKnotsAndRationalBSplineCurve;
75 }