SHAPER 9.16.0
GeomAPI_BSpline.h
1// Copyright (C) 2019-2026 CEA, EDF
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
29class GeomAPI_Pnt;
30class GeomAPI_BSpline;
31
33typedef std::shared_ptr<GeomAPI_BSpline> GeomBSplinePtr;
34
40{
41public:
43 GEOMAPI_EXPORT GeomAPI_BSpline (const GeomCurvePtr& theCurve);
44
46 GEOMAPI_EXPORT int degree() const;
47
49 GEOMAPI_EXPORT std::list<std::shared_ptr<GeomAPI_Pnt> > poles() const;
50
52 GEOMAPI_EXPORT std::list<double> weights() const;
53
55 GEOMAPI_EXPORT std::list<double> knots() const;
56
58 GEOMAPI_EXPORT std::list<int> mults() const;
59
61 GEOMAPI_EXPORT bool isPeriodic() const;
62
64 GEOMAPI_EXPORT static GeomBSplinePtr convertToBSpline (const GeomCurvePtr& theCurve);
65};
66
67#endif
B-spline in 3D.
Definition: GeomAPI_BSpline.h:40
GEOMAPI_EXPORT std::list< std::shared_ptr< GeomAPI_Pnt > > poles() const
Poles of B-spline curve.
Definition: GeomAPI_BSpline.cpp:44
GEOMAPI_EXPORT std::list< int > mults() const
Multiplicities of B-spline knots.
Definition: GeomAPI_BSpline.cpp:71
static GEOMAPI_EXPORT GeomBSplinePtr convertToBSpline(const GeomCurvePtr &theCurve)
Convert any curve into a B-spline curve.
Definition: GeomAPI_BSpline.cpp:82
GEOMAPI_EXPORT GeomAPI_BSpline(const GeomCurvePtr &theCurve)
Creation of B-spline defined by a curve.
Definition: GeomAPI_BSpline.cpp:29
GEOMAPI_EXPORT int degree() const
Degree of B-spline curve.
Definition: GeomAPI_BSpline.cpp:39
GEOMAPI_EXPORT std::list< double > knots() const
Knots of B-spline curve.
Definition: GeomAPI_BSpline.cpp:65
GEOMAPI_EXPORT std::list< double > weights() const
Weights of B-spline poles.
Definition: GeomAPI_BSpline.cpp:56
GEOMAPI_EXPORT bool isPeriodic() const
Return true if the curve is periodic.
Definition: GeomAPI_BSpline.cpp:77
General base class for all interfaces in this package.
Definition: GeomAPI_Interface.h:38
3D point defined by three coordinates
Definition: GeomAPI_Pnt.h:38