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.
24 lines
450 B
C++
24 lines
450 B
C++
#pragma once
|
|
#include "curve.h"
|
|
|
|
class CReduceCurveRedundant :
|
|
public CCurve
|
|
{
|
|
public:
|
|
CReduceCurveRedundant(void);
|
|
~CReduceCurveRedundant(void);
|
|
|
|
int Create(CCurve& cu);
|
|
|
|
void Play(int n1, int n2);
|
|
void Play(void);
|
|
void Play(CCurve& m_input, CCurve& m_output, double error);
|
|
|
|
void Play3D(int n1, int n2, int IsZ);
|
|
void Play3D(int IsZ);
|
|
void Play3D(CCurve& m_input, CCurve& m_output, double error, int IsZ);
|
|
|
|
char* mark;
|
|
double error;
|
|
};
|