Update trimesh_voronoi_remesh.cpp

corrected usage of sample
This commit is contained in:
Paolo Cignoni 2020-02-11 19:35:48 +01:00
parent 6358aebc09
commit cb13f92466
1 changed files with 2 additions and 1 deletions

View File

@ -58,7 +58,8 @@ int main( int argc, char **argv )
MyMesh startMesh; MyMesh startMesh;
if(argc < 2 ) if(argc < 2 )
{ {
printf("Usage trimesh_voro mesh region_num\n"); printf("Usage trimesh_voro mesh samplingRadius\n"
"samplingRadius is in the same unit of the mesh and is approximately the expected edge length");
return -1; return -1;
} }
printf("Reading %s \n",argv[1]); printf("Reading %s \n",argv[1]);