Adding BVH optimisation.

This commit is contained in:
Godzil
2020-03-12 07:21:44 +00:00
parent 47e31714f3
commit 7a43a98816
4 changed files with 155 additions and 0 deletions

View File

@@ -34,6 +34,8 @@ public:
class BVHOptimisation : public WorldOptimiser
{
private:
void makeTree(Group *leaf, int depth = 0);
public:
void run();
};