You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
279 B
C++

#pragma once
#include "curve.h"
class CCurveProcess
{
CCurve* v;
char *mark;
double error;
void Outline(int i1,int i2);
public:
CCurveProcess(void);
~CCurveProcess(void);
int Create(CCurve* pCurve, double m_error);
CCurve* Outline(CCurve* m_curve, double m_error);
};