Skip to content

Instantly share code, notes, and snippets.

View JJ11teen's full-sized avatar

Lucas Sargent JJ11teen

  • Redactive
  • Melbourne
  • 18:20 (UTC +10:00)
View GitHub Profile
@digitalshadow
digitalshadow / OpenSimplexNoise.cs
Last active February 10, 2025 15:37
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