KDTree.h 121 B

1234567891011
  1. #ifndef KDTREE_H
  2. #define KDTREE_H
  3. #include "common/math/Vector.h"
  4. class KDTree final {
  5. public:
  6. KDTree();
  7. };
  8. #endif