vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SphereBVH_Object.h
Go to the documentation of this file.
1 
2 #ifndef SPHEREBVH_OBJECT_H
3 #define SPHEREBVH_OBJECT_H
4 
6 #include <vrecko/Ability.h>
7 
8 using namespace vrecko;
9 
10 namespace APSpacePartitioning {
11 
12 
13 #define SP_OBJECT_INTERFACE_ID__SPHEREBVH 10
14 
16 public:
17  //
18  // constructors / destructors
19  //
22 
23  virtual void preInitialize(void);
24 
25 
26  bool getCollisions(CollisionParams * params, COLLISION_POINTS_VECTOR ** colPoints,
27  unsigned long obj1ID, unsigned long obj2ID);
28 
29 protected:
30 };
31 
32 }
33 
34 #endif
35 
36