Skip to content

Instantly share code, notes, and snippets.

View Markyparky56's full-sized avatar
💭
Hello, World!

Mark A. Ropper Markyparky56

💭
Hello, World!
View GitHub Profile
@Markyparky56
Markyparky56 / OpenSimplexNoise.hpp
Last active April 29, 2022 20:10 — forked from digitalshadow/OpenSimplexNoise.cs
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>