vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SphereBVH_Scene.h
Go to the documentation of this file.
1 
2 #ifndef SPHEREBVH_SCENE_H
3 #define SPHEREBVH_SCENE_H
4 
6 #include <vrecko/Ability.h>
7 
8 using namespace vrecko;
9 
10 namespace APSpacePartitioning {
11 
12 
13 #define SP_SCENE_INTERFACE_ID__SPHEREBVH 10
14 
15 
16 
17 class SphereBVH_Scene: public SP_SceneInterface, public Ability {
18 public:
19  //
20  // constructors / destructors
21  //
24 
25  virtual void preInitialize(void);
26 
27 
28  //
29  // methods related to space partitioning queries in the Scene
30  //
32 
33 
34 protected:
35 };
36 
37 }
38 
39 #endif
40 
41