?? ccell.cpp
字號:
//CCell.cpp
//The implemetation of CCell class
/////////////////////////////////////////////////////////
//class CSector;
//class CCell;
#include "CCell.h"
#include "CSector.h"
/////////////////////////////////////////////////////////
//初始化函數
//completed in 3.20
void CCell::Initialization()
{
//...... modified by cqm, May.31 ......//
for(int i=0;i<SectorNumber;i++)
m_aSectorInCell[i].Initialization(i+1,m_stCellID,this,/*30+120*i*/60*(2*i+1));
//調用扇區初始化函數,完成各個扇區的初始化。
//其中扇區朝向依次為60,180,300
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -