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

OpenGL program

Development Platform:

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