You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
979 B
Plaintext
34 lines
979 B
Plaintext
2 weeks ago
|
/******************************************************************************/
|
||
|
/*
|
||
|
Project - MudBun
|
||
|
Publisher - Long Bunny Labs
|
||
|
http://LongBunnyLabs.com
|
||
|
Author - Ming-Lun "Allen" Chou
|
||
|
http://AllenChou.net
|
||
|
|
||
|
Based on project "webgl-noise" by Ashima Arts.
|
||
|
Description : Array and textureless GLSL 2D simplex noise function.
|
||
|
Author : Ian McEwan, Ashima Arts.
|
||
|
Maintainer : ijm
|
||
|
Lastmod : 20110822 (ijm)
|
||
|
License : Copyright (C) 2011 Ashima Arts. All rights reserved.
|
||
|
Distributed under the MIT License. See LICENSE file.
|
||
|
https://github.com/ashima/webgl-noise
|
||
|
*/
|
||
|
/******************************************************************************/
|
||
|
|
||
|
#ifndef MUDBUN_NOISE
|
||
|
#define MUDBUN_NOISE
|
||
|
|
||
|
#include "CachedNoise3D.cginc"
|
||
|
|
||
|
#include "ClassicNoise2D.cginc"
|
||
|
#include "ClassicNoise3D.cginc"
|
||
|
|
||
|
#include "SimplexNoise2D.cginc"
|
||
|
#include "SimplexNoise3D.cginc"
|
||
|
|
||
|
#include "RandomNoise.cginc"
|
||
|
|
||
|
#endif
|