From f9cd63c8f218904ff4a23b0f8b726047e240c7db Mon Sep 17 00:00:00 2001 From: Bertrand Kerautret Date: Sat, 25 May 2024 23:35:56 +0200 Subject: [PATCH] Update visualisation/polyMeshColorize.cpp Co-authored-by: David Coeurjolly --- visualisation/polyMeshColorize.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/visualisation/polyMeshColorize.cpp b/visualisation/polyMeshColorize.cpp index 917ddee..d8cc1c7 100644 --- a/visualisation/polyMeshColorize.cpp +++ b/visualisation/polyMeshColorize.cpp @@ -363,7 +363,7 @@ int main(int argc, char** argv) // parse command line using CLI ---------------------------------------------- CLI::App app; - app.description("polyMeshColorize tool to colorize a mesh (faces). Note that the process relies on the halfedge data structure that can fail if the input is not topologically consistant. If you want use other type of mesh, you can use meshViewerEdit that is based on the simple soup of triangles process (slower selection process). \n" + app.description("polyMeshColorize tool to colorize a mesh (faces). Note that the process relies on the halfedge data structure that can fail if the input is not topologically consistent. If you want use other type of mesh, you can use meshViewerEdit that is based on the simple soup of triangles process (slower selection process). \n" " polyMeshColorize $DGtal/examples/samples/bunnyhead.obj bunnyColored.obj \n"); app.add_option("-i,--input,1", inputFileName, "an input mesh file in .obj or .off format." ) ->required()