This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Indoor/geo/volume/BVH.h
2017-09-06 08:34:20 +02:00

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