22 lines
302 B
C++
22 lines
302 B
C++
#ifndef BOUNDINGVOLUMEHIERARCHY_H
|
|
#define BOUNDINGVOLUMEHIERARCHY_H
|
|
|
|
#include "BoundingVolume.h"
|
|
#include "BoundingVolumeAABB.h"
|
|
#include "BoundingVolumeSphere.h"
|
|
|
|
class BVH {
|
|
|
|
public:
|
|
|
|
/** add a new volume to the tree */
|
|
void add(BoundingVolume* bv) {
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
#endif // BOUNDINGVOLUMEHIERARCHY_H
|