Tube.h
上传用户:sz83729876
上传日期:2013-03-07
资源大小:4140k
文件大小:1k
源码类别:

OpenGL

开发平台:

Windows_Unix

  1. #ifndef _TUBE_H_
  2. #define _TUBE_H_
  3. #include "Scene.h"
  4. #include "Mesh.h"
  5. #include "SimpleVector.h"
  6. #include "Lights.h"
  7. class CTubeScene : public CScene
  8. {
  9.     private:
  10.         CObject*                    m_pTube;
  11.         CObject*                    m_pPlates;
  12.         std::vector<CLight>         m_vLights;
  13.     public:
  14.         bool Initialize();
  15.         bool Cleanup();
  16.         bool Render( int iScreenWidth, int iScreenHeight );
  17.         bool Update();
  18.         CTubeScene();
  19. };
  20. #endif