It's been well over 20 years since Ken Perlin first invented his noise. Has anybody managed to make a faster kind of 3D noise generator with properties close to Perlin's (procedural, natural-looking grouping, reduced banding, regular feature size, etc)?

I'm trying to build a procedural world generator but currently Perlin just isn't cutting it. I admit my implementation isn't the best it could be right now, but if I'm about to rewrite it anyway I wondered if there was a better algorithm available.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

You want Simplex Noise.

  • less computationally expensive
  • not based on a square grid, so no obvious directional artifacts
  • scales better to higher dimensions: O(N) vs Classic Perlin's O(2^N) for N dimensions

There's a good explanation here. Aparently Ken Perlin's example implementation is not the most easy to understand code.

link|improve this answer
feedback

A year ago, I was needing a fast perlin noise too and have finally implemented this one

http://www.java-gaming.org/index.php?topic=23771.0 wich is 2d in java but can be turned into 3d easily (and inded in any other language than java)

depending on your need you can just use something like noise2d*noise1d (or similar trick), here is a trick sample (should be noise2d*noise1d) rendering in full java sofwtare : http://demo.dzzd.net/Sky/3/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.