(svn r21060) -Doc: Improved wording of comments (mostly by __ln__)

This commit is contained in:
alberth
2010-10-30 17:51:07 +00:00
parent 34e986ae60
commit 063931d435
27 changed files with 46 additions and 44 deletions

View File

@@ -22,8 +22,8 @@
*
* Quickie guide to Perlin Noise
* Perlin noise is a predictable pseudo random number sequence. By generating
* it in 2 dimensions, it becomes a useful random map, that for a given seed
* and starting X & Y is entirely predictable. On the face of it, that may not
* it in 2 dimensions, it becomes a useful random map that, for a given seed
* and starting X & Y, is entirely predictable. On the face of it, that may not
* be useful. However, it means that if you want to replay a map in a different
* terrain, or just vary the sea level, you just re-run the generator with the
* same seed. The seed is an int32, and is randomised on each run of New Game.