| 12 | using TriMesh = MeshHelper::HalfEdgeTriangulation; |
| 13 | |
| 14 | void PrintPoint(Polylidar::Delaunator::Delaunator &mesh, size_t idx) |
| 15 | { |
| 16 | |
| 17 | std:: cout << "[" << mesh.triangles(idx, 0) << ", " << mesh.triangles(idx, 1) << ", " << mesh.triangles(idx, 2) << "]" << std::endl; |
| 18 | } |
| 19 | |
| 20 | int main(int argc, char const *argv[]) |
| 21 | { |
nothing calls this directly
no outgoing calls
no test coverage detected