node.h
来自「用户指定顶点」· C头文件 代码 · 共 17 行
H
17 行
//---------------------------------------------------------------------------
#ifndef NodeH
#define NodeH
//---------------------------------------------------------------------------
class Node{
public:
Node(){XCoordinate=0,YCoordinate=0;}
void SetNode(int,int);
int XCoordinate; //before 7.22 float
int YCoordinate; //before 7.22 float
int select;
};
//-----------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?