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