Changeset 12698
- Timestamp:
- 07/17/11 18:26:38 (2 years ago)
- Location:
- OpenSceneGraph/branches/OpenSceneGraph-3.0
- Files:
-
- 11 modified
-
applications/osgarchive/osgarchive.cpp (modified) (1 diff)
-
applications/osgfilecache/osgfilecache.cpp (modified) (1 diff)
-
applications/present3D/Cluster.cpp (modified) (1 diff)
-
examples/osganalysis/osganalysis.cpp (modified) (1 diff)
-
examples/osgpagedlod/osgpagedlod.cpp (modified) (1 diff)
-
examples/osgparticleeffects/osgparticleeffects.cpp (modified) (1 diff)
-
examples/osgwidgetmenu/osgwidgetmenu.cpp (modified) (1 diff)
-
src/osgPlugins/ogr/ReaderWriterOGR.cpp (modified) (1 diff)
-
src/osgPlugins/quicktime/ReaderWriterQT.cpp (modified) (1 diff)
-
src/osgPlugins/stl/ReaderWriterSTL.cpp (modified) (1 diff)
-
src/osgPlugins/txp/trpage_header.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/branches/OpenSceneGraph-3.0/applications/osgarchive/osgarchive.cpp
r11931 r12698 30 30 // set up the usage document, in case we need to print out how to use this program. 31 31 arguments.getApplicationUsage()->setApplicationName(arguments.getApplicationName()); 32 arguments.getApplicationUsage()->setDescription(arguments.getApplicationName()+" is an application for collecting a set of sep erate files into a single archive file that can be later read in OSG applications..");32 arguments.getApplicationUsage()->setDescription(arguments.getApplicationName()+" is an application for collecting a set of separate files into a single archive file that can be later read in OSG applications.."); 33 33 arguments.getApplicationUsage()->setCommandLineUsage(arguments.getApplicationName()+" [options] filename ..."); 34 34 -
OpenSceneGraph/branches/OpenSceneGraph-3.0/applications/osgfilecache/osgfilecache.cpp
r12292 r12698 452 452 // set up the usage document, in case we need to print out how to use this program. 453 453 arguments.getApplicationUsage()->setApplicationName(arguments.getApplicationName()); 454 arguments.getApplicationUsage()->setDescription(arguments.getApplicationName()+" is an application for collecting a set of sep erate files into a single archive file that can be later read in OSG applications..");454 arguments.getApplicationUsage()->setDescription(arguments.getApplicationName()+" is an application for collecting a set of separate files into a single archive file that can be later read in OSG applications.."); 455 455 arguments.getApplicationUsage()->setCommandLineUsage(arguments.getApplicationName()+" [options] filename ..."); 456 456 arguments.getApplicationUsage()->addCommandLineOption("-l level","Read down to level across the whole database."); -
OpenSceneGraph/branches/OpenSceneGraph-3.0/applications/present3D/Cluster.cpp
r12292 r12698 241 241 void CameraPacket::writeEventQueue(osgViewer::Viewer& viewer) 242 242 { 243 osg::notify(osg::INFO)<<"rec ieved events = "<<_events.size()<<std::endl;243 osg::notify(osg::INFO)<<"received events = "<<_events.size()<<std::endl; 244 244 245 245 // copy the events to osgProducer style events. -
OpenSceneGraph/branches/OpenSceneGraph-3.0/examples/osganalysis/osganalysis.cpp
r12292 r12698 135 135 if (_imageProcessor.valid()) 136 136 { 137 OSG_NOTICE<<"Will be using ImageProcessor to proces image "<<image->getFileName()<<std::endl;137 OSG_NOTICE<<"Will be using ImageProcessor to process image "<<image->getFileName()<<std::endl; 138 138 } 139 139 else 140 140 { 141 OSG_NOTICE<<"No ImageProcessor to proces image "<<image->getFileName()<<std::endl;141 OSG_NOTICE<<"No ImageProcessor to process image "<<image->getFileName()<<std::endl; 142 142 } 143 143 OSG_NOTICE<<" compressImage "<<_compressImages<<std::endl; -
OpenSceneGraph/branches/OpenSceneGraph-3.0/examples/osgpagedlod/osgpagedlod.cpp
r7648 r12698 218 218 // set up the usage document, in case we need to print out how to use this program. 219 219 arguments.getApplicationUsage()->setApplicationName(arguments.getApplicationName()); 220 arguments.getApplicationUsage()->setDescription(arguments.getApplicationName()+" creates a hiera chy of files for paging which can be later loaded by viewers.");220 arguments.getApplicationUsage()->setDescription(arguments.getApplicationName()+" creates a hierarchy of files for paging which can be later loaded by viewers."); 221 221 arguments.getApplicationUsage()->setCommandLineUsage(arguments.getApplicationName()+" [options] filename ..."); 222 222 arguments.getApplicationUsage()->addCommandLineOption("-h or --help","Display this information"); -
OpenSceneGraph/branches/OpenSceneGraph-3.0/examples/osgparticleeffects/osgparticleeffects.cpp
r12529 r12698 317 317 // insert particle effects alongside the hit node, therefore able to track that nodes movement, 318 318 // however, this does require us to insert the ParticleSystem itself into the root of the scene graph 319 // sep erately from the the main particle effects group which contains the emitters and programs.319 // separately from the the main particle effects group which contains the emitters and programs. 320 320 // the follow code block implements this, note the path for handling particle effects which arn't attached to 321 321 // moving models is easy - just a single line of code! -
OpenSceneGraph/branches/OpenSceneGraph-3.0/examples/osgwidgetmenu/osgwidgetmenu.cpp
r12529 r12698 113 113 menu->addWidget(new ColorLabelMenu("Pick me!")); 114 114 menu->addWidget(new ColorLabelMenu("No, wait, pick me!")); 115 menu->addWidget(new ColorLabelMenu("Don t pick them..."));115 menu->addWidget(new ColorLabelMenu("Don't pick them...")); 116 116 menu->addWidget(new ColorLabelMenu("Grarar!?!")); 117 117 -
OpenSceneGraph/branches/OpenSceneGraph-3.0/src/osgPlugins/ogr/ReaderWriterOGR.cpp
r12292 r12698 103 103 supportsExtension("ogr","OGR file reader"); 104 104 supportsOption("useRandomColorByFeature", "Assign a random color to each feature."); 105 supportsOption("addGroupPerFeature", "Places each feature in a sep erate group.");105 supportsOption("addGroupPerFeature", "Places each feature in a separate group."); 106 106 oldHandler = CPLSetErrorHandler(CPLOSGErrorHandler); 107 107 } -
OpenSceneGraph/branches/OpenSceneGraph-3.0/src/osgPlugins/quicktime/ReaderWriterQT.cpp
r11529 r12698 327 327 // note from Robert Osfield when integrating, we should probably have so 328 328 // error handling mechanism here. Possibly move the load from 329 // the constructor to a sep erate load method, and have a valid329 // the constructor to a separate load method, and have a valid 330 330 // state on the ImageStream... will integrated as is right now 331 331 // to get things off the ground. -
OpenSceneGraph/branches/OpenSceneGraph-3.0/src/osgPlugins/stl/ReaderWriterSTL.cpp
r11536 r12698 89 89 if (options && (options->getOptionString() == "separateFiles")) 90 90 { 91 OSG_INFO << "ReaderWriterSTL::writeNode: Files are sep erated written" << std::endl;91 OSG_INFO << "ReaderWriterSTL::writeNode: Files are separated written" << std::endl; 92 92 } else { 93 93 m_f = new osgDB::ofstream(m_fout.c_str()); -
OpenSceneGraph/branches/OpenSceneGraph-3.0/src/osgPlugins/txp/trpage_header.cpp
r12536 r12698 333 333 } 334 334 335 // Read the LOD info (sep erate token)335 // Read the LOD info (separate token) 336 336 bool trpgHeader::ReadLodInfo(trpgReadBuffer &buf) 337 337 {
