Skip to content

Instantly share code, notes, and snippets.

@behreajj
behreajj / OpenSimplexNoise.cs
Last active March 23, 2019 10:37 — forked from digitalshadow/OpenSimplexNoise.cs
OpenSimplex Noise Refactored for C#
/* OpenSimplex Noise in C#
* https://gist.github.com/digitalshadow/134a3a02b67cecd72181 .
* Ported to C# by digitalshadow from the original Java
* https://gist.github.com/KdotJPG/b1270127455a94ac5d19 by KdotJPG.
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;