?? modelgeosetgroup.cpp
字號:
//+-----------------------------------------------------------------------------
//| Included files
//+-----------------------------------------------------------------------------
#include "ModelGeosetGroup.h"
//+-----------------------------------------------------------------------------
//| Constructor
//+-----------------------------------------------------------------------------
MODEL_GEOSET_GROUP::MODEL_GEOSET_GROUP()
{
MatrixListSize = 0;
D3DXMatrixIdentity(&Matrix);
VertexNodes.SetData(this);
}
//+-----------------------------------------------------------------------------
//| Destructor
//+-----------------------------------------------------------------------------
MODEL_GEOSET_GROUP::~MODEL_GEOSET_GROUP()
{
//Empty
}
//+-----------------------------------------------------------------------------
//| Clears the geoset group
//+-----------------------------------------------------------------------------
VOID MODEL_GEOSET_GROUP::Clear()
{
MatrixListSize = 0;
D3DXMatrixIdentity(&Matrix);
SAFE_CLEAR(MatrixList);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -