A noise engine with e.g. a cubic noise implementation for .NET
Go to file
Thorsten Sommer a9b122fde7 Added readme
2020-01-12 12:20:52 +01:00
NoiseEngine Renamed repo 2020-01-12 11:58:08 +01:00
NoiseEngineTests Renamed repo 2020-01-12 11:58:08 +01:00
.gitignore Initial commit 2020-01-11 14:30:32 +01:00
LICENSE Initial commit 2020-01-11 14:30:32 +01:00
NoiseEngine.sln Renamed repo 2020-01-12 11:41:17 +01:00
README.md Added readme 2020-01-12 12:20:52 +01:00

About this library

This library implements noise generators. Currently only the cubic noise generator is implemented. In the future, however, further algorithms might be added as required.

.NET Core 3.1 LTS+ only

This library was implemented especially for .NET Core 3.1 and newer. It is therefore not available for .NET Standard 2.x or the outdated .NET Framework. This design decision was made based on the following background: (a) The .NET Framework will not be further developed (cf. https://devblogs.microsoft.com/dotnet/net-core-is-the-future-of-net/); (b) as of .NET 5.0, the .NET Standard is no longer expected to be required because Mono and the .NET Core will be merged together into the new .NET 5 (cf. https://devblogs.microsoft.com/dotnet/introducing-net-5/).

Acknowledgments

I thank Job Talle for his cubic noise algorithm. In his article you can read more about the algorithm and its properties. My implementation is based on the implementation of Job.

License

This library uses the BSD 3-clause license.