Guest User

VoxTestApplication.h

a guest
Sep 10th, 2013
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.35 KB | None | 0 0
  1. /*
  2. -----------------------------------------------------------------------------
  3. Filename:    VoxTestApplication.h
  4. -----------------------------------------------------------------------------
  5.  
  6.  
  7. This source file is generated by the
  8.    ___                   _              __    __ _                  _
  9.   /___\__ _ _ __ ___    /_\  _ __  _ __/ / /\ \ (_)______ _ _ __ __| |
  10.  //  // _` | '__/ _ \  //_\\| '_ \| '_ \ \/  \/ / |_  / _` | '__/ _` |
  11. / \_// (_| | | |  __/ /  _  \ |_) | |_) \  /\  /| |/ / (_| | | | (_| |
  12. \___/ \__, |_|  \___| \_/ \_/ .__/| .__/ \/  \/ |_/___\__,_|_|  \__,_|
  13.       |___/                 |_|   |_|
  14.       Ogre 1.8.x Application Wizard for Code::Blocks (July 2012)
  15.       https://bitbucket.org/jacmoe/ogreappwizards
  16. -----------------------------------------------------------------------------
  17. */
  18. #ifndef __VoxTestApplication_h_
  19. #define __VoxTestApplication_h_
  20.  
  21. #include "BaseApplication.h"
  22. #include "PolyVoxCore/CubicSurfaceExtractorWithNormals.h"
  23. #include "PolyVoxCore/MarchingCubesSurfaceExtractor.h"
  24. #include "PolyVoxCore/SurfaceMesh.h"
  25. #include "PolyVoxCore/SimpleVolume.h"
  26. #include <cmath>
  27.  
  28.  
  29. class VoxTestApplication : public BaseApplication
  30. {
  31. public:
  32.     VoxTestApplication(void);
  33.     virtual ~VoxTestApplication(void);
  34.  
  35. protected:
  36.     virtual void createScene(void);
  37. };
  38.  
  39. #endif // #ifndef __VoxTestApplication_h_
Advertisement
Add Comment
Please, Sign In to add comment