Qwt User's Guide 6.3.0
|
Base class for all splines. More...
#include <qwt_spline.h>
Public Types | |
enum | BoundaryType { ConditionalBoundaries , PeriodicPolygon , ClosedPolygon } |
enum | BoundaryPosition { AtBeginning , AtEnd } |
enum | BoundaryCondition { Clamped1 , Clamped2 , Clamped3 , LinearRunout } |
Boundary condition. More... | |
Public Member Functions | |
QwtSpline () | |
Constructor. | |
virtual | ~QwtSpline () |
Destructor. | |
void | setParametrization (int type) |
void | setParametrization (QwtSplineParametrization *) |
const QwtSplineParametrization * | parametrization () const |
void | setBoundaryType (BoundaryType) |
BoundaryType | boundaryType () const |
void | setBoundaryValue (BoundaryPosition, double value) |
Define the boundary value. | |
double | boundaryValue (BoundaryPosition) const |
void | setBoundaryCondition (BoundaryPosition, int condition) |
Define the condition for an endpoint of the spline. | |
int | boundaryCondition (BoundaryPosition) const |
void | setBoundaryConditions (int condition, double valueBegin=0.0, double valueEnd=0.0) |
Define the condition at the endpoints of a spline. | |
virtual QPolygonF | polygon (const QPolygonF &, double tolerance) const |
Interpolate a curve by a polygon. | |
virtual QPainterPath | painterPath (const QPolygonF &) const =0 |
virtual uint | locality () const |
Base class for all splines.
A spline is a curve represented by a sequence of polynomials. Spline approximation is the process of finding polynomials for a given set of points. When the algorithm preserves the initial points it is called interpolating.
Splines can be classified according to conditions of the polynomials that are met at the start/endpoints of the pieces:
Geometric continuity requires the geometry to be continuous, while parametric continuity requires that the underlying parameterization be continuous as well. Parametric continuity of order n implies geometric continuity of order n, but not vice-versa.
QwtSpline is the base class for spline approximations of any continuity.
Definition at line 57 of file qwt_spline.h.
Boundary condition.
A spline algorithm calculates polynomials by looking a couple of points back/ahead ( locality() ). At the ends additional rules are necessary to compensate the missing points.
Enumerator | |
---|---|
Clamped1 | The first derivative at the end point is given
|
Clamped2 | The second derivative at the end point is given
|
Clamped3 | The third derivative at the end point is given
|
LinearRunout | The first derivate at the endpoint is related to the first derivative at its neighbour by the boundary value. F,e when the boundary value at the end is 1.0 then the slope at the last 2 points is the same.
|
Definition at line 119 of file qwt_spline.h.
position of a boundary condition
Enumerator | |
---|---|
AtBeginning | the condition is at the beginning of the polynomial |
AtEnd | the condition is at the end of the polynomial |
Definition at line 99 of file qwt_spline.h.
Boundary type specifying the spline at its endpoints
Enumerator | |
---|---|
ConditionalBoundaries | The polynomials at the start/endpoint depend on specific conditions
|
PeriodicPolygon | The polynomials at the start/endpoint are found by using imaginary additional points. Additional points at the end are found by translating points from the beginning or v.v. |
ClosedPolygon | ClosedPolygon is similar to PeriodicPolygon beside, that the interpolation includes the connection between the last and the first control point.
|
Definition at line 65 of file qwt_spline.h.
QwtSpline::QwtSpline | ( | ) |
Constructor.
The default setting is a non closing spline with chordal parametrization
Definition at line 540 of file qwt_spline.cpp.
|
virtual |
Destructor.
Definition at line 546 of file qwt_spline.cpp.
int QwtSpline::boundaryCondition | ( | BoundaryPosition | position | ) | const |
position | At the beginning or the end of the spline |
Definition at line 651 of file qwt_spline.cpp.
QwtSpline::BoundaryType QwtSpline::boundaryType | ( | ) | const |
double QwtSpline::boundaryValue | ( | BoundaryPosition | position | ) | const |
position | At the beginning or the end of the spline |
Definition at line 682 of file qwt_spline.cpp.
|
virtual |
The locality of an spline interpolation identifies how many adjacent polynomials are affected, when changing the position of one point.
A locality of 'n' means, that changing the coordinates of a point has an effect on 'n' leading and 'n' following polynomials. Those polynomials can be calculated from a local subpolygon.
A value of 0 means, that the interpolation is not local and any modification of the polygon requires to recalculate all polynomials ( f.e cubic splines ).
Reimplemented in QwtSplineBasis, QwtSplineCubic, QwtSplineLocal, and QwtSplinePleasing.
Definition at line 564 of file qwt_spline.cpp.
|
pure virtual |
Approximates a polygon piecewise with cubic Bezier curves and returns them as QPainterPath.
points | Control points |
Implemented in QwtSplineInterpolating, QwtSplineC1, QwtSplineC2, QwtSplineBasis, QwtSplineCubic, QwtSplineLocal, and QwtSplinePleasing.
const QwtSplineParametrization * QwtSpline::parametrization | ( | ) | const |
|
virtual |
Interpolate a curve by a polygon.
Interpolates a polygon piecewise with Bezier curves interpolating them in a 2nd pass by polygons.
The interpolation is based on "Piecewise Linear Approximation of Bézier Curves" by Roger Willcocks ( http://www.rops.org )
points | Control points |
tolerance | Maximum for the accepted error of the approximation |
Reimplemented in QwtSplineInterpolating.
Definition at line 496 of file qwt_spline.cpp.
void QwtSpline::setBoundaryCondition | ( | BoundaryPosition | position, |
int | condition ) |
Define the condition for an endpoint of the spline.
position | At the beginning or the end of the spline |
condition | Condition |
Definition at line 639 of file qwt_spline.cpp.
void QwtSpline::setBoundaryConditions | ( | int | condition, |
double | valueBegin = 0.0, | ||
double | valueEnd = 0.0 ) |
Define the condition at the endpoints of a spline.
condition | Condition |
valueBegin | Used for the condition at the beginning of te spline |
valueEnd | Used for the condition at the end of te spline |
Definition at line 700 of file qwt_spline.cpp.
void QwtSpline::setBoundaryType | ( | BoundaryType | boundaryType | ) |
Define the boundary type for the endpoints of the approximating spline.
boundaryType | Boundary type |
Definition at line 617 of file qwt_spline.cpp.
void QwtSpline::setBoundaryValue | ( | BoundaryPosition | position, |
double | value ) |
Define the boundary value.
The boundary value is an parameter used in combination with the boundary condition. Its meaning depends on the condition.
position | At the beginning or the end of the spline |
value | Value used for the condition at the end point |
Definition at line 670 of file qwt_spline.cpp.
void QwtSpline::setParametrization | ( | int | type | ) |
Define the parametrization for a parametric spline approximation The default setting is a chordal parametrization.
type | Type of parametrization, usually one of QwtSplineParametrization::Type |
Definition at line 576 of file qwt_spline.cpp.
void QwtSpline::setParametrization | ( | QwtSplineParametrization * | parametrization | ) |
Define the parametrization for a parametric spline approximation The default setting is a chordal parametrization.
parametrization | Parametrization |
Definition at line 592 of file qwt_spline.cpp.