- 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

@@ -67,6 +67,13 @@ void DecimaterViewerWidget::keyPressEvent(QKeyEvent* _event)
{
switch (_event->key())
{
case Key_H:
std::cout << "Press '+' to increase the number of decimating steps\n"
<< "Press '-' to decrease the number of decimating steps\n"
<< "Press 'd' to perform the set number of decimating steps\n"
<< "Press 'S' to save the mesh to 'result.off'\n"
<< "Press 'q' or 'Esc' quit the application" << std::endl;
break;
case Key_D:
{
int rc;