27#ifndef QWT_CURVE_FITTER_H
28#define QWT_CURVE_FITTER_H
30#include "qwt_global.h"
80 virtual QPolygonF
fitCurve(
const QPolygonF& polygon )
const = 0;
90 virtual QPainterPath
fitCurvePath(
const QPolygonF& polygon )
const = 0;
Abstract base class for a curve fitter.
Definition qwt_curve_fitter.h:39
virtual QPainterPath fitCurvePath(const QPolygonF &polygon) const =0
Find a curve path which has the best fit to a series of data points.
Mode
Preferred mode of the fitting algorithm.
Definition qwt_curve_fitter.h:50
@ Polygon
The fitting algorithm creates a polygon - the implementation of fitCurvePath() simply wraps the polyg...
Definition qwt_curve_fitter.h:57
virtual QPolygonF fitCurve(const QPolygonF &polygon) const =0
Find a curve which has the best fit to a series of data points.