- added an explanation on how to use multiple modules to the commandlineDecimater help output

- added decimater related help output to DecimaterGui when 'h' is pressed as the application is running

refs #1580

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@827 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Isaak Lim
2013-05-30 15:11:38 +00:00
parent f552be05fa
commit 84bc25ffd1
3 changed files with 15 additions and 2 deletions

View File

@@ -533,7 +533,12 @@ void usage_and_exit(int xcode)
<< " Decimating a mesh using quadrics and normal flipping.\n" << std::endl;
std::cerr << "Options\n" << std::endl;
std::cerr << " -M \"{Module-Name}[:Value]}\"\n"
<< " Use named module with eventually given parameterization\n" << std::endl;
<< " Use named module with eventually given parameterization\n"
<< " Several modules can also be used in order to introduce further constraints\n"
<< " Note that -M has to be given before each new module \n"
<< " An example with ModQuadric as a priority module\n"
<< " and ModRoundness as a binary module could look like this:\n"
<< " commandlineDecimater -M Q -M R:40.0 -n 0.1 -i inputfile.obj -o outputfile.obj\n" << std::endl;
std::cerr << " -n <N>\n"
<< " N >= 1: do N halfedge collapses.\n"
<< " N <=-1: decimate down to |N| vertices.\n"