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

OpenGL

开发平台:

Windows_Unix

  1. #ifndef _HARMONICS_H_
  2. #define _HARMONICS_H_
  3. #include "Stdinc.h"
  4. #include "Scene.h"
  5. #include "SimpleVector.h"
  6. class CCresentScene : public CScene
  7. {
  8.     private:
  9.         float               m_fMult;
  10.         unsigned int        m_texCloud;
  11.         CVector3 CresentIt( float u, float v );
  12.         void RenderCresent();
  13.     public:
  14.         bool Initialize();
  15.         bool Cleanup();
  16.         bool Render( int iScreenWidth, int iScreenHeight );
  17.         bool Update();
  18.         CCresentScene();
  19. };
  20. #endif