?? plant.h
字號:
//--------------------------------------------------
// Desc: Plant
// Date: 2007.2.25 /update
// Author: artsylee
//
// Copyright (C) 2007 artsylee
//
//--------------------------------------------------
#ifndef _PLANT_
#define _PLANT_
#include "Tree.h"
struct Grid_Offset
{
unsigned char xbias;
unsigned char zbias;
};
#define PLANT_MAP_SIZE 64
class CPlant
{
public:
CPlant();
~CPlant();
bool LoadPlant(char *pFile);
void Render(void);
private:
unsigned char m_PlantData[PLANT_MAP_SIZE][PLANT_MAP_SIZE];
Grid_Offset m_PlantOffset[PLANT_MAP_SIZE][PLANT_MAP_SIZE];
CTree m_Tree;
HeightmapVertex m_Vertex[10000];
DWORD m_VertexIndex;
};
#endif // _PLANT_
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -