From Paul Melis, fixes to spelling mistakes/typos.

This commit is contained in:
Robert Osfield
2007-07-11 15:51:17 +00:00
parent 55f3b67dbb
commit 691a49d0fa
17 changed files with 58 additions and 57 deletions

View File

@@ -51,7 +51,7 @@ namespace osgParticle
inline void setFluidDensity(float d)
{
_density = d;
_densityCoefficeint = 0.2f * osg::PI * _density;
_densityCoefficient = 0.2f * osg::PI * _density;
}
/// Get the density of the fluid.
@@ -105,7 +105,7 @@ namespace osgParticle
osg::Vec3 _wind;
float _viscosityCoefficient;
float _densityCoefficeint;
float _densityCoefficient;
};

View File

@@ -231,8 +231,8 @@ namespace osgParticle
osg::ref_ptr<osg::Uniform> _particleSizeUniform;
osg::ref_ptr<osg::Uniform> _particleColorUniform;
typedef std::pair< osg::NodeVisitor*, osg::NodePath > ViewIdenitifier;
typedef std::map< ViewIdenitifier, PrecipitationDrawableSet > ViewDrawableMap;
typedef std::pair< osg::NodeVisitor*, osg::NodePath > ViewIdentifier;
typedef std::map< ViewIdentifier, PrecipitationDrawableSet > ViewDrawableMap;
OpenThreads::Mutex _mutex;
ViewDrawableMap _viewDrawableMap;