Rev 291 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
#ifndef __BUILD_BBTREE_H
#define __BUILD_BBTREE_H
#include "BoundingTree.h"
#include "HMesh/Manifold.h"
namespace Geometry
{
typedef BoundingTree<OBox> OBBTree;
typedef BoundingTree<AABox> AABBTree;
void build_OBBTree(HMesh::Manifold& m, OBBTree& tree);
void build_AABBTree(HMesh::Manifold& m, AABBTree& tree);
}
#endif