Renamed randnormal to randomnormal

--HG--
branch : math-randobject
This commit is contained in:
Alex Szpakowski
2013-04-15 14:57:20 -03:00
parent 3046981fce
commit d98e2cb40c
8 changed files with 21 additions and 21 deletions
@@ -140,8 +140,8 @@ void ParticleSystem::add()
pLast->position[1] += Math::instance.random(-areaSpread.getY(), areaSpread.getY());
break;
case DISTRIBUTION_NORMAL:
pLast->position[0] += Math::instance.randnormal(areaSpread.getX());
pLast->position[1] += Math::instance.randnormal(areaSpread.getY());
pLast->position[0] += Math::instance.randomnormal(areaSpread.getX());
pLast->position[1] += Math::instance.randomnormal(areaSpread.getY());
break;
case DISTRIBUTION_NONE:
default: