3DTree.h
上传用户:hkb425
上传日期:2007-06-16
资源大小:34191k
文件大小:1k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. // 3DTree.h: interface for the C3DTree class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_3DTREE_H__C1CB6201_9BF6_11D6_813B_5254AB37CDC9__INCLUDED_)
  5. #define AFX_3DTREE_H__C1CB6201_9BF6_11D6_813B_5254AB37CDC9__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "structdef.h"
  10. class C3DTree  
  11. {
  12. public:
  13. C3DTree();
  14. virtual ~C3DTree();
  15.     bool Init3DTree(int treeType,float treeSize=0.2f);
  16. void Render3DTree(VERTEX position);
  17. protected:
  18.     void Draw3DTree();
  19. void DrawBranch(float width,float height);
  20. void DrawYellowTree();
  21. void DrawGreenTree();
  22. void DrawTop(float width,float height);
  23. float m_szTree;
  24. float m_height;
  25. int   m_type;
  26.     unsigned int texTreeBody;
  27. unsigned int texBranch;
  28. };
  29. #endif // !defined(AFX_3DTREE_H__C1CB6201_9BF6_11D6_813B_5254AB37CDC9__INCLUDED_)