blob: b9e54d1d4178b1e2c31304e6e3d81c4c2bf7832b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __VCURVEFIT_H__
#define __VCURVEFIT_H__
#include <qstring.h>
#include <qptrlist.h>
#include "KoPoint.h"
VPath *bezierFit(QPtrList<KoPoint> &points,float error);
#endif
|