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.
17 lines
302 B
C
17 lines
302 B
C
|
1 month ago
|
#pragma once
|
||
|
|
|
||
|
|
#include "Curve.h"
|
||
|
|
class CInsideValueFor4Curve
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
CInsideValueFor4Curve(void);
|
||
|
|
~CInsideValueFor4Curve(void);
|
||
|
|
int Create(CCurve* x1, CCurve* x2, CCurve* y1, CCurve* y2);
|
||
|
|
CCurve* x1;
|
||
|
|
CCurve* x2;
|
||
|
|
CCurve* y1;
|
||
|
|
CCurve* y2;
|
||
|
|
int Initial(void);
|
||
|
|
int Value(double& x, double& y);
|
||
|
|
};
|