replace input with triangle mesh

This commit is contained in:
Jane Tournois 2025-06-03 09:25:45 +02:00
parent 99c70b1ef2
commit a75ddb4ba1
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ namespace PMP = CGAL::Polygon_mesh_processing;
int main(int argc, char* argv[])
{
std::string filename = (argc > 1) ? argv[1] : CGAL::data_file_path("meshes/cross_quad.off");
std::string filename = (argc > 1) ? argv[1] : CGAL::data_file_path("meshes/cross.off");
Mesh input;
if(!PMP::IO::read_polygon_mesh(filename, input)) {