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.
31 lines
524 B
C
31 lines
524 B
C
|
1 month ago
|
#pragma once
|
||
|
|
|
||
|
|
#include "Curve.h" // Added by ClassView
|
||
|
|
|
||
|
|
class AFX_EXT_CLASS CFixData : public CButton
|
||
|
|
{
|
||
|
|
// Construction
|
||
|
|
public:
|
||
|
|
CFixData();
|
||
|
|
virtual ~CFixData();
|
||
|
|
|
||
|
|
// Implementation
|
||
|
|
public:
|
||
|
|
double t,step,x0,scale,dx;
|
||
|
|
CDC *pDC;
|
||
|
|
int pnum[3];
|
||
|
|
CCurve curve[3];
|
||
|
|
POINT *point[3];
|
||
|
|
COLORREF color[3];
|
||
|
|
|
||
|
|
void Draw(int kk);
|
||
|
|
void Initial(int p);
|
||
|
|
|
||
|
|
// Generated message map functions
|
||
|
|
protected:
|
||
|
|
afx_msg void OnPaint();
|
||
|
|
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
|
||
|
|
afx_msg void OnDestroy();
|
||
|
|
|
||
|
|
DECLARE_MESSAGE_MAP()
|
||
|
|
};
|