Skip to content

Instantly share code, notes, and snippets.

@JasonGoemaat
JasonGoemaat / OpenSimplexNoise.cs
Created July 14, 2023 19:45 — forked from digitalshadow/OpenSimplexNoise.cs
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
@JasonGoemaat
JasonGoemaat / 0_reuse_code.js
Created April 26, 2016 18:55
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console