Salome HOME
ae067d0fad458886361e77e9fc7725e018153dee
[modules/shaper.git] / src / GeomAPI / GeomAPI_BSpline.h
1 // Copyright (C) 2019-2020  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef GeomAPI_BSpline_H_
21 #define GeomAPI_BSpline_H_
22
23 #include <GeomAPI_Interface.h>
24 #include <GeomAPI_Curve.h>
25
26 #include <list>
27 #include <memory>
28
29 class GeomAPI_Pnt;
30
31 /**\class GeomAPI_BSpline
32  * \ingroup DataModel
33  * \brief B-spline in 3D
34  */
35 class GeomAPI_BSpline : public GeomAPI_Interface
36 {
37 public:
38   /// Creation of B-spline defined by a curve
39   GEOMAPI_EXPORT GeomAPI_BSpline(const GeomCurvePtr& theCurve);
40
41   /// Degree of B-spline curve
42   GEOMAPI_EXPORT int degree() const;
43
44   /// Poles of B-spline curve
45   GEOMAPI_EXPORT std::list<std::shared_ptr<GeomAPI_Pnt> > poles() const;
46
47   /// Weights of B-spline poles
48   GEOMAPI_EXPORT std::list<double> weights() const;
49
50   /// Knots of B-spline curve
51   GEOMAPI_EXPORT std::list<double> knots() const;
52
53   /// Multiplicities of B-spline knots
54   GEOMAPI_EXPORT std::list<int> mults() const;
55 };
56
57 //! Pointer on the object
58 typedef std::shared_ptr<GeomAPI_BSpline> GeomBSplinePtr;
59
60 #endif