- Timestamp:
- 04/10/03 12:21:20 (10 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/examples/osgoccluder/osgoccluder.cpp
r1844 r1851 287 287 arguments.getApplicationUsage()->setCommandLineUsage(arguments.getApplicationName()+" [options] filename ..."); 288 288 arguments.getApplicationUsage()->addCommandLineOption("-h or --help","Display this information"); 289 arguments.getApplicationUsage()->addCommandLineOption("- c","Mannually create occluders");289 arguments.getApplicationUsage()->addCommandLineOption("-m","Mannually create occluders"); 290 290 291 291 // initialize the viewer. … … 296 296 297 297 bool manuallyCreateOccluders = false; 298 while (arguments.read("- c")) { manuallyCreateOccluders = true; }298 while (arguments.read("-m")) { manuallyCreateOccluders = true; } 299 299 300 300 // get details on keyboard and mouse bindings used by the viewer.
