| 38 | } |
| 39 | |
| 40 | bool match(HashGrid::Ptr grid, const Vector3F& v) { |
| 41 | VectorI candidates = grid->get_items_near_point(v); |
| 42 | if (candidates.size() != 1) { |
| 43 | std::cout << "<" << v.transpose() << "> : " << candidates.transpose() |
| 44 | << std::endl; |
| 45 | } |
| 46 | return candidates.size() > 0; |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | using namespace MeshValidationHelper; |
no test coverage detected