?? dyarray.h
字號:
// DyArray.h: interface for the DyArray class.
#if !defined(AFX_DYARRAY_H__BDA434DE_FBEB_4764_A16E_7ADD3B656D91__INCLUDED_)
#define AFX_DYARRAY_H__BDA434DE_FBEB_4764_A16E_7ADD3B656D91__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "SurMath.h"
//結構體-動態數組
struct DyArray
{
SurPnt * elem;//數組的值
int length;//數組長度
int size;//數組空間
};
void Init(DyArray * array);
void Destroy(DyArray * array);
void Add(DyArray * array, SurPnt pnt);
void AddDir(DyArray * array, SurPnt pnt,int i);
void AddCor(DyArray * array, SurPnt pnt,int i);
SurPnt * GetPnt(char * name, DyArray * array);
#endif // !defined(AFX_DYARRAY_H__BDA434DE_FBEB_4764_A16E_7ADD3B656D91__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -