| 100 | } |
| 101 | |
| 102 | void KD2Index::knnSearch(double x, double y, point_count_t k, |
| 103 | PointIdList *indices, std::vector<double> *sqr_dists) const |
| 104 | { |
| 105 | m_impl->knnSearch(x, y, k, indices, sqr_dists); |
| 106 | } |
| 107 | |
| 108 | void KD2Index::knnSearch(PointId idx, point_count_t k, PointIdList *indices, |
| 109 | std::vector<double> *sqr_dists) const |
no outgoing calls
no test coverage detected