9#ifndef QWT_POLAR_FITTER_H
10#define QWT_POLAR_FITTER_H
12#include "qwt_global.h"
13#include "qwt_curve_fitter.h"
30 void setStepCount(
int size );
31 int stepCount()
const;
33 virtual QPolygonF
fitCurve(
const QPolygonF& )
const QWT_OVERRIDE;
34 virtual QPainterPath
fitCurvePath(
const QPolygonF& )
const QWT_OVERRIDE;
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.
virtual QPolygonF fitCurve(const QPolygonF &polygon) const =0
Find a curve which has the best fit to a series of data points.
A simple curve fitter for polar points.
Definition qwt_polar_fitter.h:25