#ifndef IGL_KNN_OCTREE #define IGL_KNN_OCTREE #include namespace igl { void knn_octree(const Eigen::MatrixXd & P, const int & k, const std::vector > & point_indices, const std::vector, Eigen::aligned_allocator>> & children, const std::vector> & centers, const std::vector & widths, Eigen::MatrixXi & I ); } #ifndef IGL_STATIC_LIBRARY # include "knn_octree.cpp" #endif #endif