Skip to content

Instantly share code, notes, and snippets.

@Mashpoe
Mashpoe / OpenSimplexNoise.hpp
Last active July 7, 2024 06:35 — forked from Markyparky56/OpenSimplexNoise.hpp
OpenSimplex Noise Refactored for C++
#pragma once
/*******************************************************************************
OpenSimplex Noise in C++
Ported from https://gist.github.com/digitalshadow/134a3a02b67cecd72181
Originally from https://gist.github.com/KdotJPG/b1270127455a94ac5d19
Optimised by DigitalShadow
This version by Mark A. Ropper (Markyparky56)
*******************************************************************************/
#include <array>
#include <vector>