The simplex-noise tag has no wiki summary.
15
votes
3answers
946 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 ...
5
votes
2answers
295 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
0answers
159 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
0answers
86 views
Simplex Noise Seeding
So I'm using the noise library from pypi to create simplex noise for my tiled map, I am now looking for ways to seed it.
I've tried with a 3D simplex noise and used the z axis as seed, it didn't work ...
0
votes
2answers
154 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 ...