Tube.h
Upload User: sz83729876
Upload Date: 2013-03-07
Package Size: 4140k
Code Size: 1k
Category:

OpenGL program

Development Platform:

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