dlgfittingprocess.h

来自「Hi guys, I have a B-spline curve algorit」· C头文件 代码 · 共 62 行

H
62
字号
//{{AFX_INCLUDES()
#include "mshflexgrid.h"
//}}AFX_INCLUDES
#if !defined(AFX_DLGFITTINGPROCESS_H__BB0642B8_B633_4AC0_B2DF_CC384E81B9A8__INCLUDED_)
#define AFX_DLGFITTINGPROCESS_H__BB0642B8_B633_4AC0_B2DF_CC384E81B9A8__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// dlgFittingProcess.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CdlgFittingProcess dialog

class CdlgFittingProcess : public CDialog
{
// Construction
public:
	void drawSurf(CDC *pDC);
	void drawPlan(CDC *pDC);
	void GAFitness();
	void MultimatrixF2(float *u, float *v, float *multi, int m,int n);
	void FitnessData();
	void drawFitness(CDC *pDC);
	int getArea();
	void bbasis2(int c, float t, int npts, float *xv, float *nbasis);
	BOOL OnInitDialog();
	void Refresh();
	CdlgFittingProcess(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CdlgFittingProcess)
	enum { IDD = IDD_DIALOG2 };
	int		m_population;
	int		m_length;
	CMSHFlexGrid	m_grid2;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CdlgFittingProcess)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CdlgFittingProcess)
		// NOTE: the ClassWizard will add member functions here
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_DLGFITTINGPROCESS_H__BB0642B8_B633_4AC0_B2DF_CC384E81B9A8__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?