Skip to content

Instantly share code, notes, and snippets.

@digitalshadow
digitalshadow / OpenSimplexNoise.cs
Last active April 17, 2024 23:06
OpenSimplex Noise Refactored for C#
/* OpenSimplex Noise in C#
* Ported from https://gist.github.com/KdotJPG/b1270127455a94ac5d19
* and heavily refactored to improve performance. */
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
namespace NoiseTest