- 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

@@ -134,10 +134,11 @@ int main(int argc, char **argv)
void usage_and_exit(int xcode)
{
std::cout << "Usage: decimaterviewer [-s] [mesh] [texture]\n" << std::endl;
std::cout << "Usage: DecimaterGui [-s] [mesh] [texture]\n" << std::endl;
std::cout << "Options:\n"
<< " -s\n"
<< " Reverse byte order, when reading binary files.\n"
<< " Press 'h' when the application is running for more options.\n"
<< std::endl;
exit(xcode);
}