Info
Version: | 2.0.0 |
Author(s): | WardBenjamin |
Last Update: | Thursday, March 14, 2019 |
.NET Fiddle: | Online Example |
Project Url: | https://github.com/WardBenjamin/SimplexNoise |
NuGet Url: | https://www.nuget.org/packages/SimplexNoise |
Install
Install-Package SimplexNoise
dotnet add package SimplexNoise
paket add SimplexNoise
SimplexNoise Download (Unzip the "nupkg" after downloading)
Dependencies
.NETFramework 4.0
No dependencies.
No dependencies.
- NETStandard.Library(>= 1.6.1)
No dependencies.
No dependencies.
No dependencies.
Tags
Based on work by Heikki Törmälä (2012) and Stefan Gustavson (2006). Core algorithm designed by Ken Perlin (2001).
This library provides 1D, 2D, and 3D simplex (coherent) noise, which is useful for procedural content generation - for example, terrain and particles in game development or visual media in movies.
Compared to classic Perlin noise, simplex noise has no noticable directional artefacts, and has a well-defined and continuous gradient. This means content will be visually smoother, with a lower computational complexity especially at higher orders.