📄 myclass.h
字号:
// MyClass.h: interface for the CMyClass class.
//
//////////////////////////////////////////////////////////////////////
typedef double array2d[5][5];
typedef double array[24];
#if !defined(AFX_MYCLASS_H__756EB6C1_358A_4CE1_9154_BA5DE7426E12__INCLUDED_)
#define AFX_MYCLASS_H__756EB6C1_358A_4CE1_9154_BA5DE7426E12__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CMyClass
{
public:
int xx,yy;
array X,Y,Z,C,XT,YT;
array2d A1,A;
CMyClass();
virtual ~CMyClass();
void ReadWorkpiece();
void Calculate(array2d B);
void Display();
void DrawView(CDC*pdc,CRect rr);
void moveto(double x,double y,CDC*pdc);
void lineto(double x,double y,CDC*pdc);
};
#endif // !defined(AFX_MYCLASS_H__756EB6C1_358A_4CE1_9154_BA5DE7426E12__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -