The simplex-noise tag has no wiki summary.
1
vote
1answer
96 views
Simplex Noise shader?
I have a couple of questions about Simplex Noise. I'm using Simplex Noise to generate a terrain in directx but I'm currently doing it using classes and such. I will probably use this for textures as ...
3
votes
1answer
231 views
I cannot generate smooth Simplex noise in Javascript
I've tried everything and read every single link I can see on the internet regarding Perlin Noise or Simplex Noise and even dissected a few Javascript examples that I see work fine.
But I still get ...
1
vote
1answer
678 views
What's faster for 3D? Perlin or Simplex noise?
Okay, there are a lot of comparisons between Perlin and Simplex noise to be found on the web. But I really couldn't find one where there was a simple processing time comparison between both for three ...
1
vote
0answers
58 views
Is there an algorithmic way to find the scaling factor for a given simplex noise dimension?
Here is one implementation in C# of the simplex noise algorithm
You'll notice that each noise function (2d, 3d, and 4d) scales the corner contributions to fit in the -1 to 1 range (this is the magic ...
0
votes
0answers
173 views
Best method to map texture on sphere with LOD
Before all, I'm working with OpenGL ES 2.0 on android.
Surface and height textures are generated by a thread CPU with Simplex noise algorithm.
I draw a sphere and I want to map the textures according ...
1
vote
2answers
209 views
Simplex noise just seem to give random results
I'm trying to get my simplex noise(basically perlin noise with nicer complexity) to work and give me something nice like this:
However, all I get is something that just seem random:
I'm using ...
9
votes
4answers
3k views
JavaScript simplex / perlin noise
I'm trying to create a perlin / simplex / value noise function in JavaScript that will give results similar to the following:
(Note: this image has already had a treshold applied. I want it without ...
1
vote
3answers
441 views
perlin simplex worley noise libraries for tiling in javascript or HTML5 in general?
I am curious if there are libraries already developed for creating these noises in javascript?
I have searched the web for about two hours looking for libraries in javascripts. I have seen this ...
0
votes
2answers
325 views
Light generation algorithm for clouds on the iOS platform
I'd like to fill the background of my app with animated clouds. I did some research and stumbled upon the perlin noise algorithm which seems to be fitting. However even in the first test it was ...
18
votes
5answers
4k views
Simplex noise vs Perlin noise
I would like to know why Perlin noise is still so popular today after Simplex came out. Simplex noise was made by Ken Perlin himself and it was suppose to take over his old algorithm which was slow ...
